Update contributors section in README.md for clarity; change model in agent initialization to Qwen3-32B in app.py
Browse files
README.md
CHANGED
@@ -136,8 +136,10 @@ flowchart LR
|
|
136 |
|
137 |
---
|
138 |
### Contributors:
|
139 |
-
- Code
|
140 |
-
- Ideas creation and
|
|
|
|
|
141 |
|
142 |
---
|
143 |
### Sources
|
|
|
136 |
|
137 |
---
|
138 |
### Contributors:
|
139 |
+
- Code development and implementation made by *luke9705*;
|
140 |
+
- Ideas creation, testing and videomaking conducted by *OrianIce*;
|
141 |
+
- Research and testing by *Loren1214*;
|
142 |
+
- Code revisions by *DDPM*.
|
143 |
|
144 |
---
|
145 |
### Sources
|
app.py
CHANGED
@@ -203,7 +203,7 @@ def generate_audio_from_sample(prompt: str, duration: int, sample_path: str = No
|
|
203 |
class Agent:
|
204 |
def __init__(self, ):
|
205 |
#client = HfApiModel("deepseek-ai/DeepSeek-R1-0528", provider="nebius", api_key=os.getenv("NEBIUS_API_KEY"))
|
206 |
-
client = HfApiModel("
|
207 |
"""client = OpenAIServerModel(
|
208 |
model_id="claude-opus-4-20250514",
|
209 |
api_base="https://api.anthropic.com/v1/",
|
|
|
203 |
class Agent:
|
204 |
def __init__(self, ):
|
205 |
#client = HfApiModel("deepseek-ai/DeepSeek-R1-0528", provider="nebius", api_key=os.getenv("NEBIUS_API_KEY"))
|
206 |
+
client = HfApiModel("Qwen/Qwen3-32B", provider="nebius", api_key=os.getenv("NEBIUS_API_KEY"))
|
207 |
"""client = OpenAIServerModel(
|
208 |
model_id="claude-opus-4-20250514",
|
209 |
api_base="https://api.anthropic.com/v1/",
|