luke9705 commited on
Commit
b107f85
·
1 Parent(s): 982d28b

Update contributors section in README.md for clarity; change model in agent initialization to Qwen3-32B in app.py

Browse files
Files changed (2) hide show
  1. README.md +4 -2
  2. app.py +1 -1
README.md CHANGED
@@ -136,8 +136,10 @@ flowchart LR
136
 
137
  ---
138
  ### Contributors:
139
- - Code Implementation made by luke9705 and DDPM;
140
- - Ideas creation and testing conducted by OrianIce and Loren1214.
 
 
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("google/gemma-3-27b-it", 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/",
 
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/",