bstraehle commited on
Commit
8ff6f71
·
verified ·
1 Parent(s): b706dd5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -2,7 +2,7 @@ import gradio as gr
2
  import logging, os, sys, threading, time
3
 
4
  from agent_langchain import agent_langchain
5
- #from agent_llamaindex import agent_llamaindex
6
  from openai import OpenAI
7
  from trace import trace_wandb
8
 
@@ -49,11 +49,11 @@ def invoke(openai_api_key, prompt, agent_option):
49
  )
50
 
51
  result = completion["output"]
52
- #elif (agent_option == AGENT_LLAMAINDEX):
53
- # result = agent_llamaindex(
54
- # config,
55
- # prompt
56
- # )
57
  else:
58
  client = OpenAI()
59
 
 
2
  import logging, os, sys, threading, time
3
 
4
  from agent_langchain import agent_langchain
5
+ from agent_llamaindex import agent_llamaindex
6
  from openai import OpenAI
7
  from trace import trace_wandb
8
 
 
49
  )
50
 
51
  result = completion["output"]
52
+ elif (agent_option == AGENT_LLAMAINDEX):
53
+ result = agent_llamaindex(
54
+ config,
55
+ prompt
56
+ )
57
  else:
58
  client = OpenAI()
59