Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
scriptis committed Oct 19, 2023
0 parents commit 6f672ff
Show file tree
Hide file tree
Showing 16 changed files with 2,264 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[*]
root = true
max_line_length = 80
insert_final_newline = true
trim_trailing_whitespace = true
end_of_line = lf
charset = utf-8
indent_style = space
indent_size = 2

[*.rs]
indent_size = 4

[*.py]
indent_size = 4
112 changes: 112 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
$RECYCLE.BIN/
**/*.rs.bk
*.cab
*.icloud
*.lcov
*.lnk
*.log
*.msi
*.msix
*.msm
*.msp
*.pdb
*.pid
*.pid.lock
*.seed
*.stackdump
*.tgz
*.tsbuildinfo
*~
.AppleDB
.AppleDesktop
.AppleDouble
.DS_Store
.DocumentRevisions-V100
.LSOverride
.Spotlight-V100
.TemporaryItems
.Trash-*
.Trashes
.VolumeIcon.icns
._*
.apdisk
.cache
.cache/
.com.apple.timemachine.donotpresent
.devenv*
.directory
.direnv
.docusaurus
.dynamodb/
.env
.env.development.local
.env.local
.env.production.local
.env.test.local
.eslintcache
.fseventsd
.fuse_hidden*
.fusebox/
.grunt
.idea/
.lock-wscript
.next
.nfs*
.node_repl_history
.npm
.nuxt
.nyc_output
.parcel-cache
.pnp.*
.pnpm-debug.log*
.pre-commit-config.yaml
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/
.serverless/
.stylelintcache
.svelte-kit
.temp
.tern-port
.venv
.venv/
.vscode-test
.vscode/
.vuepress/dist
.webpack/
.yarn-integrity
.yarn/build-state.yml
.yarn/cache
.yarn/install-state.gz
.yarn/unplugged
Icon
Network Trash Folder
Temporary Items
Thumbs.db
Thumbs.db:encryptable
[Dd]esktop.ini
bower_components
build/Release
coverage
debug/
devenv.local.nix
dist
dist/
ehthumbs.db
ehthumbs_vista.db
jspm_packages/
lerna-debug.log*
lib-cov
logs
node_modules/*
npm-debug.log*
out
pids
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
result
result/
target/
web_modules/
yarn-debug.log*
yarn-error.log*
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "crates/llama_cpp_sys/thirdparty/llama.cpp"]
path = crates/llama_cpp_sys/thirdparty/llama.cpp
url = https://github.com/ggerganov/llama.cpp.git
Loading

0 comments on commit 6f672ff

Please sign in to comment.