CalebMaresca commited on
Commit
4ec80cc
·
1 Parent(s): a85aa1c

update readme

Browse files
Files changed (2) hide show
  1. README.md +1 -1
  2. chainlit_app.py +1 -1
README.md CHANGED
@@ -116,7 +116,7 @@ See `embeddings_fine_tune.ipynb`
116
 
117
  ## Links
118
 
119
- * **Loom Video (Demo & Use Case - 5 mins MAX):** [Link to Loom video]
120
  * **Public Application Link:** https://huggingface.co/spaces/CalebMaresca/matrix-game-rag
121
  * **Public Fine-Tuned Embedding Model Link:** https://huggingface.co/CalebMaresca/matrix-game-embeddings-ft-v1
122
 
 
116
 
117
  ## Links
118
 
119
+ * **Loom Video (Demo & Use Case):** https://www.loom.com/share/97d13a5bd10844efa314919451cfc6f5?sid=570a415b-1c35-4cc1-bb02-c13ecc03fbe5
120
  * **Public Application Link:** https://huggingface.co/spaces/CalebMaresca/matrix-game-rag
121
  * **Public Fine-Tuned Embedding Model Link:** https://huggingface.co/CalebMaresca/matrix-game-embeddings-ft-v1
122
 
chainlit_app.py CHANGED
@@ -112,7 +112,7 @@ async def main(message: cl.Message):
112
  {'messages': chat_history},
113
  stream_mode="messages"
114
  ):
115
- print(f'yielded token {toke}')
116
  if metadata['langgraph_node'] == 'agent':
117
  await msg.stream_token(token.content)
118
  except Exception as e:
 
112
  {'messages': chat_history},
113
  stream_mode="messages"
114
  ):
115
+ print(f'yielded token {token}')
116
  if metadata['langgraph_node'] == 'agent':
117
  await msg.stream_token(token.content)
118
  except Exception as e: