Skip to content

Commit

Permalink
Fix code llama
Browse files Browse the repository at this point in the history
  • Loading branch information
kaarthik108 committed Sep 25, 2023
1 parent 0030c34 commit 8e1d610
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@ __pycache__/
secrets.toml
.ruff_cache

archived_logs/
archived_logs/

build/
snowchat.egg-info/
6 changes: 3 additions & 3 deletions chain.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
context: \n {context}
<</CONTEXT>>
WRITE RESPONSES IN MARKDOWN FORMAT and code in ```sql ```
write responses in markdown format
Answer:
Expand All @@ -74,8 +74,8 @@
supabase_key = st.secrets["SUPABASE_SERVICE_KEY"]
supabase: Client = create_client(supabase_url, supabase_key)

VERSION = "da5676342de1a5a335b848383af297f592b816b950a43d251a0a9edd0113604b"
LLAMA = "replicate/codellama-13b-instruct:{}".format(VERSION)
VERSION = "be553392065353425e0f0193d2a896d6a5ff201549f5d7cd9180c8dfdeac39ed"
LLAMA = "meta/codellama-13b-instruct:{}".format(VERSION)


def get_chain_replicate(vectorstore, callback_handler=None):
Expand Down

0 comments on commit 8e1d610

Please sign in to comment.