MCPcopy Create free account
hub / github.com/AutoForgeAI/autoforge / get_session

Function get_session

server/services/spec_chat_session.py:438–441  ·  view source on GitHub ↗

Get an existing session for a project.

(project_name: str)

Source from the content-addressed store, hash-verified

436
437
438def get_session(project_name: str) -> Optional[SpecChatSession]:
439 """Get an existing session for a project."""
440 with _sessions_lock:
441 return _sessions.get(project_name)
442
443
444async def create_session(project_name: str, project_dir: Path) -> SpecChatSession:

Callers 6

get_session_infoFunction · 0.50
close_sessionFunction · 0.50
assistant_chat_websocketFunction · 0.50
get_session_statusFunction · 0.50
cancel_sessionFunction · 0.50
spec_chat_websocketFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected