Spaces:
Running
Running
Update app.py
Browse files
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 |
-
|
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 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
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 |
|