Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Updated multi-agent UI generation system with
|
2 |
|
3 |
import streamlit as st
|
4 |
import time
|
@@ -14,8 +14,8 @@ st.set_page_config(page_title="Multi-Agent Collaboration", layout="wide")
|
|
14 |
# Agent model loading config
|
15 |
AGENT_MODEL_CONFIG = {
|
16 |
"product_manager": {
|
17 |
-
"base": "
|
18 |
-
"adapter": "spandana30/
|
19 |
},
|
20 |
"project_manager": {
|
21 |
"base": "google/gemma-1.1-7b-it",
|
@@ -177,4 +177,4 @@ def main():
|
|
177 |
st.write(f"🧩 {stage.replace('_', ' ').title()} Time: {final_state['timings'].get(stage, 0):.2f}s")
|
178 |
|
179 |
if __name__ == "__main__":
|
180 |
-
main()
|
|
|
1 |
+
# Updated multi-agent UI generation system with all agents using public base models (Gemma used for Product Manager too)
|
2 |
|
3 |
import streamlit as st
|
4 |
import time
|
|
|
14 |
# Agent model loading config
|
15 |
AGENT_MODEL_CONFIG = {
|
16 |
"product_manager": {
|
17 |
+
"base": "google/gemma-1.1-7b-it",
|
18 |
+
"adapter": "spandana30/project-manager-gemma"
|
19 |
},
|
20 |
"project_manager": {
|
21 |
"base": "google/gemma-1.1-7b-it",
|
|
|
177 |
st.write(f"🧩 {stage.replace('_', ' ').title()} Time: {final_state['timings'].get(stage, 0):.2f}s")
|
178 |
|
179 |
if __name__ == "__main__":
|
180 |
+
main()
|