-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'nico/update_to_pb_batch' of github.com:dcSpark/shinkai-…
…node into nico/update_to_pb_batch
- Loading branch information
Showing
51 changed files
with
2,291 additions
and
2,001 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/bin/bash | ||
|
||
export NODE_IP="0.0.0.0" | ||
export NODE_PORT="9552" | ||
export NODE_WS_PORT="9551" | ||
export NODE_API_IP="0.0.0.0" | ||
export NODE_API_PORT="9550" | ||
export IDENTITY_SECRET_KEY="fd1ca428ec1be6ae8b0b3d23ea507eba8cf7da0869578753b9781efda2b6a8ab" | ||
export ENCRYPTION_SECRET_KEY="e06a1c02d638d4552d733dca8ff8f023841d1126965050b2048f1140bfd82a5c" | ||
export PING_INTERVAL_SECS="0" | ||
export GLOBAL_IDENTITY_NAME="@@_my_9552.shinkai" | ||
export RUST_LOG=debug,error,info | ||
export STARTING_NUM_QR_PROFILES="1" | ||
export STARTING_NUM_QR_DEVICES="1" | ||
export FIRST_DEVICE_NEEDS_REGISTRATION_CODE="false" | ||
export LOG_SIMPLE="true" | ||
export NO_SECRET_FILE="true" | ||
export EMBEDDINGS_SERVER_URL="https://internal.shinkai.com/x-embed-api/" | ||
export UNSTRUCTURED_SERVER_URL="https://internal.shinkai.com" | ||
|
||
export INITIAL_AGENT_NAMES="my_gpt,my_gpt_vision" | ||
export INITIAL_AGENT_URLS="https://api.openai.com,https://api.openai.com" | ||
export INITIAL_AGENT_MODELS="openai:gpt-4-1106-preview,openai:gpt-4-vision-preview" | ||
|
||
# Add these lines to enable all log options | ||
export LOG_ALL=1 | ||
|
||
cargo run |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/bin/bash | ||
|
||
export NODE_IP="0.0.0.0" | ||
export NODE_PORT="9652" | ||
export NODE_WS_PORT="9651" | ||
export NODE_API_IP="0.0.0.0" | ||
export NODE_API_PORT="9650" | ||
export IDENTITY_SECRET_KEY="bf0be9c2da2d5f9371bb61f5b2b9f4a6bb294f064e187056005a8bda8dc2ef00" | ||
export ENCRYPTION_SECRET_KEY="806bbcca2ab460aaa57ed00aa2fdf88b1d039b5ca2d89306d4ebd77b14e52c77" | ||
export PING_INTERVAL_SECS="0" | ||
export GLOBAL_IDENTITY_NAME="@@_my_9652.shinkai" | ||
export RUST_LOG=debug,error,info | ||
export STARTING_NUM_QR_PROFILES="1" | ||
export STARTING_NUM_QR_DEVICES="1" | ||
export FIRST_DEVICE_NEEDS_REGISTRATION_CODE="false" | ||
export LOG_SIMPLE="true" | ||
export NO_SECRET_FILE="true" | ||
export EMBEDDINGS_SERVER_URL="https://internal.shinkai.com/x-embed-api/" | ||
export UNSTRUCTURED_SERVER_URL="https://internal.shinkai.com/" | ||
|
||
export INITIAL_AGENT_NAMES="my_gpt,my_gpt_vision" | ||
export INITIAL_AGENT_URLS="https://api.openai.com,https://api.openai.com" | ||
export INITIAL_AGENT_MODELS="openai:gpt-4-1106-preview,openai:gpt-4-vision-preview" | ||
|
||
# Add these lines to enable all log options | ||
export LOG_ALL=1 | ||
|
||
cargo run |
Oops, something went wrong.