MCPcopy Create free account
hub / github.com/apache/burr / application

Function application

examples/streaming-fastapi/application.py:187–196  ·  view source on GitHub ↗
(app_id: Optional[str] = None)

Source from the content-addressed store, hash-verified

185
186
187def application(app_id: Optional[str] = None):
188 return (
189 ApplicationBuilder()
190 .with_entrypoint("prompt")
191 .with_state(chat_history=[])
192 .with_graph(graph)
193 .with_tracker(project="demo_chatbot_streaming")
194 .with_identifiers(app_id=app_id)
195 .build()
196 )
197
198
199# TODO -- replace these with action tags when we have the availability

Callers 1

application.pyFile · 0.70

Calls 7

ApplicationBuilderClass · 0.90
with_identifiersMethod · 0.80
with_trackerMethod · 0.80
with_stateMethod · 0.80
with_entrypointMethod · 0.80
buildMethod · 0.45
with_graphMethod · 0.45

Tested by

no test coverage detected