Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,64 +1,69 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
-
from
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
|
| 4 |
-
|
| 5 |
-
For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
|
| 6 |
-
"""
|
| 7 |
-
client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
|
| 8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
for message in client.chat_completion(
|
| 31 |
-
messages,
|
| 32 |
-
max_tokens=max_tokens,
|
| 33 |
-
stream=True,
|
| 34 |
-
temperature=temperature,
|
| 35 |
-
top_p=top_p,
|
| 36 |
-
):
|
| 37 |
-
token = message.choices[0].delta.content
|
| 38 |
|
| 39 |
-
response += token
|
| 40 |
-
yield response
|
| 41 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
|
| 50 |
-
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
| 51 |
-
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
| 52 |
-
gr.Slider(
|
| 53 |
-
minimum=0.1,
|
| 54 |
-
maximum=1.0,
|
| 55 |
-
value=0.95,
|
| 56 |
-
step=0.05,
|
| 57 |
-
label="Top-p (nucleus sampling)",
|
| 58 |
-
),
|
| 59 |
],
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 60 |
)
|
| 61 |
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
demo.launch()
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
+
from composio_llamaindex import ComposioToolSet, App, Action
|
| 3 |
+
from llama_index.core.agent import FunctionCallingAgentWorker
|
| 4 |
+
from llama_index.core.llms import ChatMessage
|
| 5 |
+
from llama_index.llms.openai import OpenAI
|
| 6 |
+
from dotenv import load_dotenv
|
| 7 |
|
| 8 |
+
load_dotenv()
|
|
|
|
|
|
|
|
|
|
| 9 |
|
| 10 |
+
# Initialize Composio ToolSet and OpenAI model
|
| 11 |
+
composio_toolset = ComposioToolSet()
|
| 12 |
+
tools = composio_toolset.get_tools(apps=[App.EXA, App.BROWSERBASE_TOOL, App.GOOGLESHEETS])
|
| 13 |
+
llm = OpenAI(model="gpt-4o")
|
| 14 |
|
| 15 |
+
# Set up prefix messages for the agent
|
| 16 |
+
prefix_messages = [
|
| 17 |
+
ChatMessage(
|
| 18 |
+
role="system",
|
| 19 |
+
content=(
|
| 20 |
+
"You are a domain name suggestion agent. Based on the latest news of business mergers and acquisitions, suggest creative domain names."
|
| 21 |
+
"Use the information available to you. Provide at least 10 relevant domain name suggestions based on the merger or acquisition."
|
| 22 |
+
"Include the following elements in your suggestions:"
|
| 23 |
+
"""
|
| 24 |
+
Suggested Domain Names:
|
| 25 |
+
1. Domain Name
|
| 26 |
+
2. Availability Status
|
| 27 |
+
3. Related Keywords
|
| 28 |
+
4. Industry Relevance
|
| 29 |
+
"""
|
| 30 |
+
"Once the suggestions have been generated, present them in a clear format."
|
| 31 |
+
),
|
| 32 |
+
)
|
| 33 |
+
]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
|
|
|
|
|
|
|
| 35 |
|
| 36 |
+
# Define the function that interacts with the agent
|
| 37 |
+
def generate_domain_suggestions(industry, reason):
|
| 38 |
+
# Initialize the agent worker
|
| 39 |
+
agent = FunctionCallingAgentWorker(
|
| 40 |
+
tools=tools,
|
| 41 |
+
llm=llm,
|
| 42 |
+
prefix_messages=prefix_messages,
|
| 43 |
+
max_function_calls=10,
|
| 44 |
+
allow_parallel_tool_calls=False,
|
| 45 |
+
verbose=True,
|
| 46 |
+
).as_agent()
|
| 47 |
+
|
| 48 |
+
user_input = f"Based on the Industry {industry} look for latest merger and business deals and then suggest domain names that can be bought for these mergers and deals."
|
| 49 |
+
response = agent.chat(user_input)
|
| 50 |
+
return response.response
|
| 51 |
+
|
| 52 |
|
| 53 |
+
# Create Gradio Interface with two input fields and Markdown output
|
| 54 |
+
iface = gr.Interface(
|
| 55 |
+
fn=generate_domain_suggestions,
|
| 56 |
+
inputs=[
|
| 57 |
+
#gr.HTML("<h2>Built with Composio</h2><a href='https://github.com/composiohq/composio'>GitHub Repository</a>"),
|
| 58 |
+
gr.Textbox(label="Industry Name", placeholder="Enter the name of the industry"),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 59 |
],
|
| 60 |
+
outputs=[
|
| 61 |
+
gr.Markdown(label="Domain Suggestions and Sponsorship Request"),
|
| 62 |
+
],
|
| 63 |
+
title="Domain Name Suggestion Tool for Mergers and Acquisitions",
|
| 64 |
+
description="Built with [Composio](https://www.github.com/composiohq/composio) Use this tool to generate domain name suggestions based on the latest business mergers and acquisitions.",
|
| 65 |
+
theme=gr.themes.Default(), # Ensure to set a theme if needed
|
| 66 |
)
|
| 67 |
|
| 68 |
+
# Launch the interface
|
| 69 |
+
iface.launch()
|
|
|