Skip to content

Commit 3650220

Browse files
committed
get tests fixed
1 parent c41ba5f commit 3650220

35 files changed

+967
-751
lines changed

.idea/toolchain.iml

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

DEPENDENCIES.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
In order to build our fork of Deno you'll need to have llvm installed
3+
4+
brew install llvm

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,12 @@ prototype development is `chidori-debugger` which wraps our runtime in a useful
7373
```bash
7474
xcode-select --install
7575
brew install cmake
76-
brew install protobuf # We're working on eliminating this dependency
77-
brew install libiconv # We're investigating if this is necessary or can be removed
76+
# We are working on eliminating this dependency
77+
brew install protobuf
78+
# We are investigating if this is necessary or can be removed
79+
brew install libiconv
7880
brew install [email protected]
81+
brew install uv
7982
cargo install chidori-debugger
8083
```
8184

litellm_config.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,7 @@ model_list:
77
litellm_params:
88
model: text-completion-openai/gpt-3.5-turbo-instruct # The `text-completion-openai/` prefix will call openai.completions.create
99
api_key: os.environ/OPENAI_API_KEY
10+
- model_name: text-embedding-3-small
11+
litellm_params:
12+
model: openai/text-embedding-3-small
13+
api_key: os.environ/OPENAI_API_KEY

0 commit comments

Comments
 (0)