Skip to content

Commit 6f672ff

Browse files
committed
Initial commit
0 parents  commit 6f672ff

File tree

16 files changed

+2264
-0
lines changed

16 files changed

+2264
-0
lines changed

.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[*]
2+
root = true
3+
max_line_length = 80
4+
insert_final_newline = true
5+
trim_trailing_whitespace = true
6+
end_of_line = lf
7+
charset = utf-8
8+
indent_style = space
9+
indent_size = 2
10+
11+
[*.rs]
12+
indent_size = 4
13+
14+
[*.py]
15+
indent_size = 4

.gitignore

Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
$RECYCLE.BIN/
2+
**/*.rs.bk
3+
*.cab
4+
*.icloud
5+
*.lcov
6+
*.lnk
7+
*.log
8+
*.msi
9+
*.msix
10+
*.msm
11+
*.msp
12+
*.pdb
13+
*.pid
14+
*.pid.lock
15+
*.seed
16+
*.stackdump
17+
*.tgz
18+
*.tsbuildinfo
19+
*~
20+
.AppleDB
21+
.AppleDesktop
22+
.AppleDouble
23+
.DS_Store
24+
.DocumentRevisions-V100
25+
.LSOverride
26+
.Spotlight-V100
27+
.TemporaryItems
28+
.Trash-*
29+
.Trashes
30+
.VolumeIcon.icns
31+
._*
32+
.apdisk
33+
.cache
34+
.cache/
35+
.com.apple.timemachine.donotpresent
36+
.devenv*
37+
.directory
38+
.direnv
39+
.docusaurus
40+
.dynamodb/
41+
.env
42+
.env.development.local
43+
.env.local
44+
.env.production.local
45+
.env.test.local
46+
.eslintcache
47+
.fseventsd
48+
.fuse_hidden*
49+
.fusebox/
50+
.grunt
51+
.idea/
52+
.lock-wscript
53+
.next
54+
.nfs*
55+
.node_repl_history
56+
.npm
57+
.nuxt
58+
.nyc_output
59+
.parcel-cache
60+
.pnp.*
61+
.pnpm-debug.log*
62+
.pre-commit-config.yaml
63+
.rpt2_cache/
64+
.rts2_cache_cjs/
65+
.rts2_cache_es/
66+
.rts2_cache_umd/
67+
.serverless/
68+
.stylelintcache
69+
.svelte-kit
70+
.temp
71+
.tern-port
72+
.venv
73+
.venv/
74+
.vscode-test
75+
.vscode/
76+
.vuepress/dist
77+
.webpack/
78+
.yarn-integrity
79+
.yarn/build-state.yml
80+
.yarn/cache
81+
.yarn/install-state.gz
82+
.yarn/unplugged
83+
Icon
84+
Network Trash Folder
85+
Temporary Items
86+
Thumbs.db
87+
Thumbs.db:encryptable
88+
[Dd]esktop.ini
89+
bower_components
90+
build/Release
91+
coverage
92+
debug/
93+
devenv.local.nix
94+
dist
95+
dist/
96+
ehthumbs.db
97+
ehthumbs_vista.db
98+
jspm_packages/
99+
lerna-debug.log*
100+
lib-cov
101+
logs
102+
node_modules/*
103+
npm-debug.log*
104+
out
105+
pids
106+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
107+
result
108+
result/
109+
target/
110+
web_modules/
111+
yarn-debug.log*
112+
yarn-error.log*

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "crates/llama_cpp_sys/thirdparty/llama.cpp"]
2+
path = crates/llama_cpp_sys/thirdparty/llama.cpp
3+
url = https://github.com/ggerganov/llama.cpp.git

0 commit comments

Comments
 (0)