-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdfx.json
More file actions
35 lines (35 loc) · 872 Bytes
/
Copy pathdfx.json
File metadata and controls
35 lines (35 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"canisters": {
"backend": {
"dependencies": ["llm"],
"main": "backend/app.mo",
"type": "motoko",
"args": "--enhanced-orthogonal-persistence"
},
"frontend": {
"dependencies": ["backend"],
"frontend": {
"entrypoint": "frontend/index.html"
},
"source": ["frontend/dist"],
"type": "assets"
},
"llm": {
"candid": "https://github.com/dfinity/llm/releases/latest/download/llm-canister-ollama.did",
"type": "custom",
"specified_id": "w36hm-eqaaa-aaaal-qr76a-cai",
"remote": {
"id": {
"ic": "w36hm-eqaaa-aaaal-qr76a-cai"
}
},
"wasm": "https://github.com/dfinity/llm/releases/latest/download/llm-canister-ollama.wasm"
}
},
"output_env_file": ".env",
"defaults": {
"build": {
"packtool": "mops sources"
}
}
}