shallou commited on
Commit
8e3cbf2
·
verified ·
1 Parent(s): b3f638f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -1,11 +1,9 @@
 
1
  from typing import List, Literal, Dict, Optional
2
  from agency_swarm import Agent, Agency, set_openai_key, BaseTool
3
  from pydantic import Field, BaseModel
4
  import streamlit as st
5
 
6
- # Replace the below line with your actual API key
7
- API_KEY = "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"
8
-
9
  class AnalyzeProjectRequirements(BaseTool):
10
  project_name: str = Field(..., description="Name of the project")
11
  project_description: str = Field(..., description="Project description and goals")
@@ -365,4 +363,4 @@ def main() -> None:
365
  st.rerun()
366
 
367
  if __name__ == "__main__":
368
- main()
 
1
+
2
  from typing import List, Literal, Dict, Optional
3
  from agency_swarm import Agent, Agency, set_openai_key, BaseTool
4
  from pydantic import Field, BaseModel
5
  import streamlit as st
6
 
 
 
 
7
  class AnalyzeProjectRequirements(BaseTool):
8
  project_name: str = Field(..., description="Name of the project")
9
  project_description: str = Field(..., description="Project description and goals")
 
363
  st.rerun()
364
 
365
  if __name__ == "__main__":
366
+ main()