bstraehle commited on
Commit
f36b4ae
·
verified ·
1 Parent(s): 7fb18c9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -122,14 +122,16 @@ gr.ChatInterface(
122
  textbox=gr.Textbox(placeholder="Ask anything", container=False, scale=7),
123
  title="Python Coding Assistant",
124
  description=(
125
- "The assistant can **generate, explain, fix, optimize,** and **document Python code, "
126
  "create unit test cases,** and **answer general coding-related questions.** "
127
  "It can also **execute code**. "
128
  "The assistant has access to tools, including a code interpreter and custom function calling: "
129
  "a <b>today tool</b> (to get current date), "
130
  "a **<a href='https://pypi.org/project/yfinance/'>yfinance</a> download tool** (to get stock data), "
131
  "and a **<a href='https://tavily.com/'>tavily</a> search tool** (to perform web search). "
132
- "The features are showcased by the examples below."
 
 
133
  ),
134
  clear_btn="Clear",
135
  retry_btn=None,
 
122
  textbox=gr.Textbox(placeholder="Ask anything", container=False, scale=7),
123
  title="Python Coding Assistant",
124
  description=(
125
+ "<p>The assistant can **generate, explain, fix, optimize,** and **document Python code, "
126
  "create unit test cases,** and **answer general coding-related questions.** "
127
  "It can also **execute code**. "
128
  "The assistant has access to tools, including a code interpreter and custom function calling: "
129
  "a <b>today tool</b> (to get current date), "
130
  "a **<a href='https://pypi.org/project/yfinance/'>yfinance</a> download tool** (to get stock data), "
131
  "and a **<a href='https://tavily.com/'>tavily</a> search tool** (to perform web search). "
132
+ "The features are showcased by the examples below.</p>"
133
+ "<p>The app uses the asynchronous stateful OpenAI Assistants API (Python SDK). For examples of the synchronous stateless OpenAI "
134
+ "Chat Completion API (REST API) see this <a href='https://www.postman.com/bstraehle/workspace/generative-ai-llm-rest-apis/collection/7643177-b1b59a8b-824a-4af2-8675-661ad26aa745'>Postman collection</a>.</p>"
135
  ),
136
  clear_btn="Clear",
137
  retry_btn=None,