ztor2 commited on
Commit
73b0b9a
1 Parent(s): 911d3bd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -18,7 +18,7 @@ from llama_index.core.indices.multi_modal.base import MultiModalVectorStoreIndex
18
  from llama_index.multi_modal_llms.openai import OpenAIMultiModal
19
 
20
  embeddings = OpenAIEmbeddings(model="text-embedding-3-small")
21
- chat_llm = ChatOpenAI(temperature = 0.5, model = 'gpt-4-turbo')
22
 
23
  contextualize_q_system_prompt = """Given a chat history and the latest user question \
24
  which might reference context in the chat history, formulate a standalone question \
@@ -52,7 +52,7 @@ pg_connection = f"postgresql+psycopg://postgres:{pg_password}@{aws_ec2_ip}:5432/
52
  qd_client = qdrant_client.QdrantClient(path="qdrant_db")
53
  image_store = QdrantVectorStore(client=qd_client, collection_name="image_collection")
54
  storage_context = StorageContext.from_defaults(image_store=image_store)
55
- openai_mm_llm = OpenAIMultiModal(model="gpt-4o", max_new_tokens=1500)
56
 
57
  def response(message, history, doc_label):
58
 
 
18
  from llama_index.multi_modal_llms.openai import OpenAIMultiModal
19
 
20
  embeddings = OpenAIEmbeddings(model="text-embedding-3-small")
21
+ chat_llm = ChatOpenAI(temperature = 0.5, model = 'gpt-4o')
22
 
23
  contextualize_q_system_prompt = """Given a chat history and the latest user question \
24
  which might reference context in the chat history, formulate a standalone question \
 
52
  qd_client = qdrant_client.QdrantClient(path="qdrant_db")
53
  image_store = QdrantVectorStore(client=qd_client, collection_name="image_collection")
54
  storage_context = StorageContext.from_defaults(image_store=image_store)
55
+ openai_mm_llm = OpenAIMultiModal(model="gpt-4-vision-preview", max_new_tokens=1500)
56
 
57
  def response(message, history, doc_label):
58