├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── LangChainDemo ├── LangChainDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── LangChainDemo │ ├── AgentExecutor.swift │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── ContentView.swift │ ├── LangChainDemoApp.swift │ └── Preview Content │ └── Preview Assets.xcassets │ └── Contents.json ├── Package.resolved ├── Package.swift ├── README.md ├── Sources └── LangGraph │ ├── Checkpoints.swift │ ├── LangGraph.swift │ └── Resources │ └── README.md ├── Tests └── LangGraphTests │ ├── CheckpointsTests.swift │ ├── Issue10Tests.swift │ └── LangGraphTests.swift ├── changelog.mustache ├── changelog.sh ├── channels.playground ├── Contents.swift └── contents.xcplayground ├── docs.sh ├── docs ├── css │ ├── 866.2d08a543.css │ ├── 989.4f123103.css │ ├── documentation-topic.da0b1931.css │ ├── index.3a335429.css │ ├── topic.4be8f56d.css │ └── tutorials-overview.adb17623.css ├── data │ └── documentation │ │ ├── langgraph.json │ │ └── langgraph │ │ ├── agentstate.json │ │ ├── agentstate │ │ ├── data.json │ │ ├── init(_:).json │ │ └── value(_:).json │ │ ├── appenderchannel.json │ │ ├── appenderchannel │ │ ├── init(default:).json │ │ └── updateattribute(_:oldvalue:newvalue:).json │ │ ├── baseagentstate.json │ │ ├── baseagentstate │ │ ├── agentstate-implementations.json │ │ ├── data.json │ │ ├── init().json │ │ ├── init(_:).json │ │ ├── subscript(_:).json │ │ └── value(_:).json │ │ ├── channel.json │ │ ├── channel │ │ ├── default.json │ │ ├── init(reducer:default:).json │ │ ├── reducer.json │ │ └── updateattribute(_:oldvalue:newvalue:).json │ │ ├── channelprotocol.json │ │ ├── channelprotocol │ │ ├── default.json │ │ ├── reducer.json │ │ ├── t.json │ │ └── updateattribute(_:oldvalue:newvalue:).json │ │ ├── channels.json │ │ ├── checkpoint.json │ │ ├── checkpoint │ │ ├── !=(_:_:).json │ │ ├── ==(_:_:).json │ │ ├── decodable-implementations.json │ │ ├── encodable-implementations.json │ │ ├── encode(to:).json │ │ ├── equatable-implementations.json │ │ ├── id.json │ │ ├── init(from:).json │ │ ├── init(state:nodeid:nextnodeid:).json │ │ ├── nextnodeid.json │ │ ├── nodeid.json │ │ ├── state.json │ │ └── updatestate(values:channels:).json │ │ ├── checkpointerror.json │ │ ├── checkpointerror │ │ ├── error-implementations.json │ │ ├── errordescription.json │ │ ├── failurereason.json │ │ ├── helpanchor.json │ │ ├── localizeddescription.json │ │ ├── localizederror-implementations.json │ │ ├── missingthreadidentifier(_:).json │ │ └── recoverysuggestion.json │ │ ├── checkpointsaver.json │ │ ├── checkpointsaver │ │ ├── get(config:).json │ │ ├── list(config:).json │ │ ├── put(config:checkpoint:).json │ │ └── release(config:).json │ │ ├── compileconfig.json │ │ ├── compileconfig │ │ ├── checkpointsaver.json │ │ ├── init(checkpointsaver:interruptionsbefore:).json │ │ └── interruptionsbefore.json │ │ ├── compiledgrapherror.json │ │ ├── compiledgrapherror │ │ ├── error-implementations.json │ │ ├── errordescription.json │ │ ├── executionerror(_:).json │ │ ├── failurereason.json │ │ ├── helpanchor.json │ │ ├── localizeddescription.json │ │ ├── localizederror-implementations.json │ │ ├── missingedge(_:).json │ │ ├── missingnode(_:).json │ │ ├── missingnodeinedgemapping(_:).json │ │ └── recoverysuggestion.json │ │ ├── defaultprovider.json │ │ ├── edgecondition.json │ │ ├── end.json │ │ ├── graphinput.json │ │ ├── graphinput │ │ ├── args(_:).json │ │ └── resume.json │ │ ├── memorycheckpointsaver.json │ │ ├── memorycheckpointsaver │ │ ├── get(config:).json │ │ ├── list(config:).json │ │ ├── put(config:checkpoint:).json │ │ └── release(config:).json │ │ ├── nodeaction.json │ │ ├── nodeoutput.json │ │ ├── nodeoutput │ │ ├── init(node:state:).json │ │ ├── node.json │ │ └── state.json │ │ ├── partialagentstate.json │ │ ├── reducer.json │ │ ├── runnableconfig.json │ │ ├── runnableconfig │ │ ├── checkpointid.json │ │ ├── init(threadid:checkpointid:verbose:).json │ │ ├── nextnodeid.json │ │ ├── threadid.json │ │ ├── verbose.json │ │ └── with(update:).json │ │ ├── start.json │ │ ├── statefactory.json │ │ ├── stategraph.json │ │ ├── stategraph │ │ ├── addconditionaledge(sourceid:condition:edgemapping:).json │ │ ├── addedge(sourceid:targetid:).json │ │ ├── addnode(_:action:).json │ │ ├── addnode(_:subgraph:).json │ │ ├── compile(config:).json │ │ ├── compiledgraph.json │ │ ├── compiledgraph │ │ │ ├── invoke(_:config:).json │ │ │ ├── stream(_:config:).json │ │ │ └── updatestate(config:values:asnode:).json │ │ ├── init(channels:statefactory:).json │ │ ├── setconditionalentrypoint(condition:edgemapping:).json │ │ └── setentrypoint(_:).json │ │ ├── stategrapherror.json │ │ ├── stategrapherror │ │ ├── duplicateedgeerror(_:).json │ │ ├── duplicatenodeerror(_:).json │ │ ├── edgemappingisempty.json │ │ ├── entrypointnotexist(_:).json │ │ ├── error-implementations.json │ │ ├── errordescription.json │ │ ├── failurereason.json │ │ ├── finishpointnotexist(_:).json │ │ ├── helpanchor.json │ │ ├── invalidedgeidentifier(_:).json │ │ ├── invalidnodeidentifier(_:).json │ │ ├── localizeddescription.json │ │ ├── localizederror-implementations.json │ │ ├── missingentrypoint.json │ │ ├── missingnodeinedgemapping(_:).json │ │ ├── missingnodereferencedbyedge(_:).json │ │ └── recoverysuggestion.json │ │ ├── tag.json │ │ └── tag │ │ ├── checkpoints.json │ │ └── threadid.json ├── developer-og-twitter.jpg ├── developer-og.jpg ├── documentation │ └── langgraph │ │ ├── agentstate │ │ ├── data │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(_:) │ │ │ └── index.html │ │ └── value(_:) │ │ │ └── index.html │ │ ├── appenderchannel │ │ ├── index.html │ │ ├── init(default:) │ │ │ └── index.html │ │ └── updateattribute(_:oldvalue:newvalue:) │ │ │ └── index.html │ │ ├── baseagentstate │ │ ├── agentstate-implementations │ │ │ └── index.html │ │ ├── data │ │ │ └── index.html │ │ ├── index.html │ │ ├── init() │ │ │ └── index.html │ │ ├── init(_:) │ │ │ └── index.html │ │ ├── subscript(_:) │ │ │ └── index.html │ │ └── value(_:) │ │ │ └── index.html │ │ ├── channel │ │ ├── default │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(reducer:default:) │ │ │ └── index.html │ │ ├── reducer │ │ │ └── index.html │ │ └── updateattribute(_:oldvalue:newvalue:) │ │ │ └── index.html │ │ ├── channelprotocol │ │ ├── default │ │ │ └── index.html │ │ ├── index.html │ │ ├── reducer │ │ │ └── index.html │ │ ├── t │ │ │ └── index.html │ │ └── updateattribute(_:oldvalue:newvalue:) │ │ │ └── index.html │ │ ├── channels │ │ └── index.html │ │ ├── checkpoint │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── ==(_:_:) │ │ │ └── index.html │ │ ├── decodable-implementations │ │ │ └── index.html │ │ ├── encodable-implementations │ │ │ └── index.html │ │ ├── encode(to:) │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── id │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(from:) │ │ │ └── index.html │ │ ├── init(state:nodeid:nextnodeid:) │ │ │ └── index.html │ │ ├── nextnodeid │ │ │ └── index.html │ │ ├── nodeid │ │ │ └── index.html │ │ ├── state │ │ │ └── index.html │ │ └── updatestate(values:channels:) │ │ │ └── index.html │ │ ├── checkpointerror │ │ ├── error-implementations │ │ │ └── index.html │ │ ├── errordescription │ │ │ └── index.html │ │ ├── failurereason │ │ │ └── index.html │ │ ├── helpanchor │ │ │ └── index.html │ │ ├── index.html │ │ ├── localizeddescription │ │ │ └── index.html │ │ ├── localizederror-implementations │ │ │ └── index.html │ │ ├── missingthreadidentifier(_:) │ │ │ └── index.html │ │ └── recoverysuggestion │ │ │ └── index.html │ │ ├── checkpointsaver │ │ ├── get(config:) │ │ │ └── index.html │ │ ├── index.html │ │ ├── list(config:) │ │ │ └── index.html │ │ ├── put(config:checkpoint:) │ │ │ └── index.html │ │ └── release(config:) │ │ │ └── index.html │ │ ├── compileconfig │ │ ├── checkpointsaver │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(checkpointsaver:interruptionsbefore:) │ │ │ └── index.html │ │ └── interruptionsbefore │ │ │ └── index.html │ │ ├── compiledgrapherror │ │ ├── error-implementations │ │ │ └── index.html │ │ ├── errordescription │ │ │ └── index.html │ │ ├── executionerror(_:) │ │ │ └── index.html │ │ ├── failurereason │ │ │ └── index.html │ │ ├── helpanchor │ │ │ └── index.html │ │ ├── index.html │ │ ├── localizeddescription │ │ │ └── index.html │ │ ├── localizederror-implementations │ │ │ └── index.html │ │ ├── missingedge(_:) │ │ │ └── index.html │ │ ├── missingnode(_:) │ │ │ └── index.html │ │ ├── missingnodeinedgemapping(_:) │ │ │ └── index.html │ │ └── recoverysuggestion │ │ │ └── index.html │ │ ├── defaultprovider │ │ └── index.html │ │ ├── edgecondition │ │ └── index.html │ │ ├── end │ │ └── index.html │ │ ├── graphinput │ │ ├── args(_:) │ │ │ └── index.html │ │ ├── index.html │ │ └── resume │ │ │ └── index.html │ │ ├── index.html │ │ ├── memorycheckpointsaver │ │ ├── get(config:) │ │ │ └── index.html │ │ ├── index.html │ │ ├── list(config:) │ │ │ └── index.html │ │ ├── put(config:checkpoint:) │ │ │ └── index.html │ │ └── release(config:) │ │ │ └── index.html │ │ ├── nodeaction │ │ └── index.html │ │ ├── nodeoutput │ │ ├── index.html │ │ ├── init(node:state:) │ │ │ └── index.html │ │ ├── node │ │ │ └── index.html │ │ └── state │ │ │ └── index.html │ │ ├── partialagentstate │ │ └── index.html │ │ ├── reducer │ │ └── index.html │ │ ├── runnableconfig │ │ ├── checkpointid │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(threadid:checkpointid:verbose:) │ │ │ └── index.html │ │ ├── nextnodeid │ │ │ └── index.html │ │ ├── threadid │ │ │ └── index.html │ │ ├── verbose │ │ │ └── index.html │ │ └── with(update:) │ │ │ └── index.html │ │ ├── start │ │ └── index.html │ │ ├── statefactory │ │ └── index.html │ │ ├── stategraph │ │ ├── addconditionaledge(sourceid:condition:edgemapping:) │ │ │ └── index.html │ │ ├── addedge(sourceid:targetid:) │ │ │ └── index.html │ │ ├── addnode(_:action:) │ │ │ └── index.html │ │ ├── addnode(_:subgraph:) │ │ │ └── index.html │ │ ├── compile(config:) │ │ │ └── index.html │ │ ├── compiledgraph │ │ │ ├── index.html │ │ │ ├── invoke(_:config:) │ │ │ │ └── index.html │ │ │ ├── stream(_:config:) │ │ │ │ └── index.html │ │ │ └── updatestate(config:values:asnode:) │ │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(channels:statefactory:) │ │ │ └── index.html │ │ ├── setconditionalentrypoint(condition:edgemapping:) │ │ │ └── index.html │ │ └── setentrypoint(_:) │ │ │ └── index.html │ │ ├── stategrapherror │ │ ├── duplicateedgeerror(_:) │ │ │ └── index.html │ │ ├── duplicatenodeerror(_:) │ │ │ └── index.html │ │ ├── edgemappingisempty │ │ │ └── index.html │ │ ├── entrypointnotexist(_:) │ │ │ └── index.html │ │ ├── error-implementations │ │ │ └── index.html │ │ ├── errordescription │ │ │ └── index.html │ │ ├── failurereason │ │ │ └── index.html │ │ ├── finishpointnotexist(_:) │ │ │ └── index.html │ │ ├── helpanchor │ │ │ └── index.html │ │ ├── index.html │ │ ├── invalidedgeidentifier(_:) │ │ │ └── index.html │ │ ├── invalidnodeidentifier(_:) │ │ │ └── index.html │ │ ├── localizeddescription │ │ │ └── index.html │ │ ├── localizederror-implementations │ │ │ └── index.html │ │ ├── missingentrypoint │ │ │ └── index.html │ │ ├── missingnodeinedgemapping(_:) │ │ │ └── index.html │ │ ├── missingnodereferencedbyedge(_:) │ │ │ └── index.html │ │ └── recoverysuggestion │ │ │ └── index.html │ │ └── tag │ │ ├── checkpoints │ │ └── index.html │ │ ├── index.html │ │ └── threadid │ │ └── index.html ├── favicon.ico ├── favicon.svg ├── img │ ├── added-icon.832a5d2c.svg │ ├── deprecated-icon.7bf1740a.svg │ └── modified-icon.efb2697d.svg ├── index.html ├── index │ └── index.json ├── js │ ├── 104.fe5974d0.js │ ├── 337.274a8ccc.js │ ├── 842.aeb682fd.js │ ├── 866.6e371bd7.js │ ├── chunk-vendors.bdb7cbba.js │ ├── documentation-topic.28579b4f.js │ ├── highlight-js-bash-js.702f0c5c.js │ ├── highlight-js-c-js.063069d3.js │ ├── highlight-js-cpp-js.458a9ae4.js │ ├── highlight-js-css-js.bfc4251f.js │ ├── highlight-js-custom-markdown.78c9f6ed.js │ ├── highlight-js-custom-swift.738731d1.js │ ├── highlight-js-diff-js.4db9a783.js │ ├── highlight-js-http-js.f78e83c2.js │ ├── highlight-js-java-js.4fe21e94.js │ ├── highlight-js-javascript-js.dfc9d16d.js │ ├── highlight-js-json-js.2a1856ba.js │ ├── highlight-js-llvm-js.26121771.js │ ├── highlight-js-markdown-js.a2f456af.js │ ├── highlight-js-objectivec-js.74dea052.js │ ├── highlight-js-perl-js.da6eda82.js │ ├── highlight-js-php-js.c458ffa4.js │ ├── highlight-js-python-js.60354774.js │ ├── highlight-js-ruby-js.7272231f.js │ ├── highlight-js-scss-js.adcd11a2.js │ ├── highlight-js-shell-js.0ad5b20f.js │ ├── highlight-js-swift-js.bdd5bff5.js │ ├── highlight-js-xml-js.0d78f903.js │ ├── index.d2f6f6a9.js │ ├── topic.24dedb87.js │ └── tutorials-overview.2d184ec0.js └── metadata.json └── hotfix-changelog.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/LICENSE -------------------------------------------------------------------------------- /LangChainDemo/LangChainDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/LangChainDemo/LangChainDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LangChainDemo/LangChainDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/LangChainDemo/LangChainDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LangChainDemo/LangChainDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/LangChainDemo/LangChainDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LangChainDemo/LangChainDemo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/LangChainDemo/LangChainDemo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /LangChainDemo/LangChainDemo/AgentExecutor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/LangChainDemo/LangChainDemo/AgentExecutor.swift -------------------------------------------------------------------------------- /LangChainDemo/LangChainDemo/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/LangChainDemo/LangChainDemo/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /LangChainDemo/LangChainDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/LangChainDemo/LangChainDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LangChainDemo/LangChainDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/LangChainDemo/LangChainDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /LangChainDemo/LangChainDemo/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/LangChainDemo/LangChainDemo/ContentView.swift -------------------------------------------------------------------------------- /LangChainDemo/LangChainDemo/LangChainDemoApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/LangChainDemo/LangChainDemo/LangChainDemoApp.swift -------------------------------------------------------------------------------- /LangChainDemo/LangChainDemo/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/LangChainDemo/LangChainDemo/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/README.md -------------------------------------------------------------------------------- /Sources/LangGraph/Checkpoints.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/Sources/LangGraph/Checkpoints.swift -------------------------------------------------------------------------------- /Sources/LangGraph/LangGraph.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/Sources/LangGraph/LangGraph.swift -------------------------------------------------------------------------------- /Sources/LangGraph/Resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/Sources/LangGraph/Resources/README.md -------------------------------------------------------------------------------- /Tests/LangGraphTests/CheckpointsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/Tests/LangGraphTests/CheckpointsTests.swift -------------------------------------------------------------------------------- /Tests/LangGraphTests/Issue10Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/Tests/LangGraphTests/Issue10Tests.swift -------------------------------------------------------------------------------- /Tests/LangGraphTests/LangGraphTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/Tests/LangGraphTests/LangGraphTests.swift -------------------------------------------------------------------------------- /changelog.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/changelog.mustache -------------------------------------------------------------------------------- /changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/changelog.sh -------------------------------------------------------------------------------- /channels.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/channels.playground/Contents.swift -------------------------------------------------------------------------------- /channels.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/channels.playground/contents.xcplayground -------------------------------------------------------------------------------- /docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs.sh -------------------------------------------------------------------------------- /docs/css/866.2d08a543.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/css/866.2d08a543.css -------------------------------------------------------------------------------- /docs/css/989.4f123103.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/css/989.4f123103.css -------------------------------------------------------------------------------- /docs/css/documentation-topic.da0b1931.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/css/documentation-topic.da0b1931.css -------------------------------------------------------------------------------- /docs/css/index.3a335429.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/css/index.3a335429.css -------------------------------------------------------------------------------- /docs/css/topic.4be8f56d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/css/topic.4be8f56d.css -------------------------------------------------------------------------------- /docs/css/tutorials-overview.adb17623.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/css/tutorials-overview.adb17623.css -------------------------------------------------------------------------------- /docs/data/documentation/langgraph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/agentstate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/agentstate.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/agentstate/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/agentstate/data.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/agentstate/init(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/agentstate/init(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/agentstate/value(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/agentstate/value(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/appenderchannel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/appenderchannel.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/appenderchannel/init(default:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/appenderchannel/init(default:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/appenderchannel/updateattribute(_:oldvalue:newvalue:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/appenderchannel/updateattribute(_:oldvalue:newvalue:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/baseagentstate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/baseagentstate.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/baseagentstate/agentstate-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/baseagentstate/agentstate-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/baseagentstate/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/baseagentstate/data.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/baseagentstate/init().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/baseagentstate/init().json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/baseagentstate/init(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/baseagentstate/init(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/baseagentstate/subscript(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/baseagentstate/subscript(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/baseagentstate/value(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/baseagentstate/value(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/channel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/channel.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/channel/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/channel/default.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/channel/init(reducer:default:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/channel/init(reducer:default:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/channel/reducer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/channel/reducer.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/channel/updateattribute(_:oldvalue:newvalue:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/channel/updateattribute(_:oldvalue:newvalue:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/channelprotocol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/channelprotocol.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/channelprotocol/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/channelprotocol/default.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/channelprotocol/reducer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/channelprotocol/reducer.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/channelprotocol/t.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/channelprotocol/t.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/channelprotocol/updateattribute(_:oldvalue:newvalue:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/channelprotocol/updateattribute(_:oldvalue:newvalue:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/channels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/channels.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpoint.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpoint/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpoint/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpoint/==(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpoint/==(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpoint/decodable-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpoint/decodable-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpoint/encodable-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpoint/encodable-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpoint/encode(to:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpoint/encode(to:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpoint/equatable-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpoint/equatable-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpoint/id.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpoint/id.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpoint/init(from:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpoint/init(from:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpoint/init(state:nodeid:nextnodeid:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpoint/init(state:nodeid:nextnodeid:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpoint/nextnodeid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpoint/nextnodeid.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpoint/nodeid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpoint/nodeid.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpoint/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpoint/state.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpoint/updatestate(values:channels:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpoint/updatestate(values:channels:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpointerror.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpointerror.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpointerror/error-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpointerror/error-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpointerror/errordescription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpointerror/errordescription.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpointerror/failurereason.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpointerror/failurereason.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpointerror/helpanchor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpointerror/helpanchor.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpointerror/localizeddescription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpointerror/localizeddescription.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpointerror/localizederror-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpointerror/localizederror-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpointerror/missingthreadidentifier(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpointerror/missingthreadidentifier(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpointerror/recoverysuggestion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpointerror/recoverysuggestion.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpointsaver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpointsaver.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpointsaver/get(config:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpointsaver/get(config:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpointsaver/list(config:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpointsaver/list(config:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpointsaver/put(config:checkpoint:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpointsaver/put(config:checkpoint:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/checkpointsaver/release(config:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/checkpointsaver/release(config:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/compileconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/compileconfig.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/compileconfig/checkpointsaver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/compileconfig/checkpointsaver.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/compileconfig/init(checkpointsaver:interruptionsbefore:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/compileconfig/init(checkpointsaver:interruptionsbefore:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/compileconfig/interruptionsbefore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/compileconfig/interruptionsbefore.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/compiledgrapherror.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/compiledgrapherror.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/compiledgrapherror/error-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/compiledgrapherror/error-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/compiledgrapherror/errordescription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/compiledgrapherror/errordescription.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/compiledgrapherror/executionerror(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/compiledgrapherror/executionerror(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/compiledgrapherror/failurereason.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/compiledgrapherror/failurereason.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/compiledgrapherror/helpanchor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/compiledgrapherror/helpanchor.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/compiledgrapherror/localizeddescription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/compiledgrapherror/localizeddescription.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/compiledgrapherror/localizederror-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/compiledgrapherror/localizederror-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/compiledgrapherror/missingedge(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/compiledgrapherror/missingedge(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/compiledgrapherror/missingnode(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/compiledgrapherror/missingnode(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/compiledgrapherror/missingnodeinedgemapping(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/compiledgrapherror/missingnodeinedgemapping(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/compiledgrapherror/recoverysuggestion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/compiledgrapherror/recoverysuggestion.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/defaultprovider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/defaultprovider.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/edgecondition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/edgecondition.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/end.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/graphinput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/graphinput.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/graphinput/args(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/graphinput/args(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/graphinput/resume.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/graphinput/resume.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/memorycheckpointsaver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/memorycheckpointsaver.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/memorycheckpointsaver/get(config:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/memorycheckpointsaver/get(config:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/memorycheckpointsaver/list(config:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/memorycheckpointsaver/list(config:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/memorycheckpointsaver/put(config:checkpoint:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/memorycheckpointsaver/put(config:checkpoint:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/memorycheckpointsaver/release(config:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/memorycheckpointsaver/release(config:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/nodeaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/nodeaction.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/nodeoutput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/nodeoutput.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/nodeoutput/init(node:state:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/nodeoutput/init(node:state:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/nodeoutput/node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/nodeoutput/node.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/nodeoutput/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/nodeoutput/state.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/partialagentstate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/partialagentstate.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/reducer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/reducer.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/runnableconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/runnableconfig.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/runnableconfig/checkpointid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/runnableconfig/checkpointid.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/runnableconfig/init(threadid:checkpointid:verbose:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/runnableconfig/init(threadid:checkpointid:verbose:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/runnableconfig/nextnodeid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/runnableconfig/nextnodeid.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/runnableconfig/threadid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/runnableconfig/threadid.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/runnableconfig/verbose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/runnableconfig/verbose.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/runnableconfig/with(update:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/runnableconfig/with(update:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/start.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/start.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/statefactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/statefactory.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategraph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategraph.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategraph/addconditionaledge(sourceid:condition:edgemapping:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategraph/addconditionaledge(sourceid:condition:edgemapping:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategraph/addedge(sourceid:targetid:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategraph/addedge(sourceid:targetid:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategraph/addnode(_:action:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategraph/addnode(_:action:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategraph/addnode(_:subgraph:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategraph/addnode(_:subgraph:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategraph/compile(config:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategraph/compile(config:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategraph/compiledgraph.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategraph/compiledgraph.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategraph/compiledgraph/invoke(_:config:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategraph/compiledgraph/invoke(_:config:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategraph/compiledgraph/stream(_:config:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategraph/compiledgraph/stream(_:config:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategraph/compiledgraph/updatestate(config:values:asnode:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategraph/compiledgraph/updatestate(config:values:asnode:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategraph/init(channels:statefactory:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategraph/init(channels:statefactory:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategraph/setconditionalentrypoint(condition:edgemapping:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategraph/setconditionalentrypoint(condition:edgemapping:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategraph/setentrypoint(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategraph/setentrypoint(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategrapherror.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategrapherror.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategrapherror/duplicateedgeerror(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategrapherror/duplicateedgeerror(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategrapherror/duplicatenodeerror(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategrapherror/duplicatenodeerror(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategrapherror/edgemappingisempty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategrapherror/edgemappingisempty.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategrapherror/entrypointnotexist(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategrapherror/entrypointnotexist(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategrapherror/error-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategrapherror/error-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategrapherror/errordescription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategrapherror/errordescription.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategrapherror/failurereason.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategrapherror/failurereason.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategrapherror/finishpointnotexist(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategrapherror/finishpointnotexist(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategrapherror/helpanchor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategrapherror/helpanchor.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategrapherror/invalidedgeidentifier(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategrapherror/invalidedgeidentifier(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategrapherror/invalidnodeidentifier(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategrapherror/invalidnodeidentifier(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategrapherror/localizeddescription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategrapherror/localizeddescription.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategrapherror/localizederror-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategrapherror/localizederror-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategrapherror/missingentrypoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategrapherror/missingentrypoint.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategrapherror/missingnodeinedgemapping(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategrapherror/missingnodeinedgemapping(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategrapherror/missingnodereferencedbyedge(_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategrapherror/missingnodereferencedbyedge(_:).json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/stategrapherror/recoverysuggestion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/stategrapherror/recoverysuggestion.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/tag.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/tag/checkpoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/tag/checkpoints.json -------------------------------------------------------------------------------- /docs/data/documentation/langgraph/tag/threadid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/data/documentation/langgraph/tag/threadid.json -------------------------------------------------------------------------------- /docs/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/developer-og.jpg -------------------------------------------------------------------------------- /docs/documentation/langgraph/agentstate/data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/agentstate/data/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/agentstate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/agentstate/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/agentstate/init(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/agentstate/init(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/agentstate/value(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/agentstate/value(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/appenderchannel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/appenderchannel/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/appenderchannel/init(default:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/appenderchannel/init(default:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/appenderchannel/updateattribute(_:oldvalue:newvalue:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/appenderchannel/updateattribute(_:oldvalue:newvalue:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/baseagentstate/agentstate-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/baseagentstate/agentstate-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/baseagentstate/data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/baseagentstate/data/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/baseagentstate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/baseagentstate/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/baseagentstate/init()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/baseagentstate/init()/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/baseagentstate/init(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/baseagentstate/init(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/baseagentstate/subscript(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/baseagentstate/subscript(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/baseagentstate/value(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/baseagentstate/value(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/channel/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/channel/default/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/channel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/channel/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/channel/init(reducer:default:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/channel/init(reducer:default:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/channel/reducer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/channel/reducer/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/channel/updateattribute(_:oldvalue:newvalue:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/channel/updateattribute(_:oldvalue:newvalue:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/channelprotocol/default/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/channelprotocol/default/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/channelprotocol/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/channelprotocol/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/channelprotocol/reducer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/channelprotocol/reducer/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/channelprotocol/t/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/channelprotocol/t/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/channelprotocol/updateattribute(_:oldvalue:newvalue:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/channelprotocol/updateattribute(_:oldvalue:newvalue:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/channels/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/channels/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpoint/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpoint/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpoint/==(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpoint/==(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpoint/decodable-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpoint/decodable-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpoint/encodable-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpoint/encodable-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpoint/encode(to:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpoint/encode(to:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpoint/equatable-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpoint/equatable-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpoint/id/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpoint/id/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpoint/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpoint/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpoint/init(from:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpoint/init(from:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpoint/init(state:nodeid:nextnodeid:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpoint/init(state:nodeid:nextnodeid:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpoint/nextnodeid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpoint/nextnodeid/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpoint/nodeid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpoint/nodeid/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpoint/state/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpoint/state/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpoint/updatestate(values:channels:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpoint/updatestate(values:channels:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpointerror/error-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpointerror/error-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpointerror/errordescription/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpointerror/errordescription/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpointerror/failurereason/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpointerror/failurereason/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpointerror/helpanchor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpointerror/helpanchor/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpointerror/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpointerror/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpointerror/localizeddescription/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpointerror/localizeddescription/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpointerror/localizederror-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpointerror/localizederror-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpointerror/missingthreadidentifier(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpointerror/missingthreadidentifier(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpointerror/recoverysuggestion/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpointerror/recoverysuggestion/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpointsaver/get(config:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpointsaver/get(config:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpointsaver/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpointsaver/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpointsaver/list(config:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpointsaver/list(config:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpointsaver/put(config:checkpoint:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpointsaver/put(config:checkpoint:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/checkpointsaver/release(config:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/checkpointsaver/release(config:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/compileconfig/checkpointsaver/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/compileconfig/checkpointsaver/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/compileconfig/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/compileconfig/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/compileconfig/init(checkpointsaver:interruptionsbefore:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/compileconfig/init(checkpointsaver:interruptionsbefore:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/compileconfig/interruptionsbefore/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/compileconfig/interruptionsbefore/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/compiledgrapherror/error-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/compiledgrapherror/error-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/compiledgrapherror/errordescription/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/compiledgrapherror/errordescription/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/compiledgrapherror/executionerror(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/compiledgrapherror/executionerror(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/compiledgrapherror/failurereason/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/compiledgrapherror/failurereason/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/compiledgrapherror/helpanchor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/compiledgrapherror/helpanchor/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/compiledgrapherror/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/compiledgrapherror/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/compiledgrapherror/localizeddescription/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/compiledgrapherror/localizeddescription/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/compiledgrapherror/localizederror-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/compiledgrapherror/localizederror-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/compiledgrapherror/missingedge(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/compiledgrapherror/missingedge(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/compiledgrapherror/missingnode(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/compiledgrapherror/missingnode(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/compiledgrapherror/missingnodeinedgemapping(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/compiledgrapherror/missingnodeinedgemapping(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/compiledgrapherror/recoverysuggestion/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/compiledgrapherror/recoverysuggestion/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/defaultprovider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/defaultprovider/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/edgecondition/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/edgecondition/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/end/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/end/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/graphinput/args(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/graphinput/args(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/graphinput/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/graphinput/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/graphinput/resume/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/graphinput/resume/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/memorycheckpointsaver/get(config:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/memorycheckpointsaver/get(config:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/memorycheckpointsaver/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/memorycheckpointsaver/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/memorycheckpointsaver/list(config:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/memorycheckpointsaver/list(config:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/memorycheckpointsaver/put(config:checkpoint:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/memorycheckpointsaver/put(config:checkpoint:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/memorycheckpointsaver/release(config:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/memorycheckpointsaver/release(config:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/nodeaction/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/nodeaction/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/nodeoutput/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/nodeoutput/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/nodeoutput/init(node:state:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/nodeoutput/init(node:state:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/nodeoutput/node/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/nodeoutput/node/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/nodeoutput/state/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/nodeoutput/state/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/partialagentstate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/partialagentstate/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/reducer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/reducer/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/runnableconfig/checkpointid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/runnableconfig/checkpointid/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/runnableconfig/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/runnableconfig/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/runnableconfig/init(threadid:checkpointid:verbose:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/runnableconfig/init(threadid:checkpointid:verbose:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/runnableconfig/nextnodeid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/runnableconfig/nextnodeid/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/runnableconfig/threadid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/runnableconfig/threadid/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/runnableconfig/verbose/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/runnableconfig/verbose/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/runnableconfig/with(update:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/runnableconfig/with(update:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/start/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/start/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/statefactory/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/statefactory/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategraph/addconditionaledge(sourceid:condition:edgemapping:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategraph/addconditionaledge(sourceid:condition:edgemapping:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategraph/addedge(sourceid:targetid:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategraph/addedge(sourceid:targetid:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategraph/addnode(_:action:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategraph/addnode(_:action:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategraph/addnode(_:subgraph:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategraph/addnode(_:subgraph:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategraph/compile(config:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategraph/compile(config:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategraph/compiledgraph/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategraph/compiledgraph/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategraph/compiledgraph/invoke(_:config:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategraph/compiledgraph/invoke(_:config:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategraph/compiledgraph/stream(_:config:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategraph/compiledgraph/stream(_:config:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategraph/compiledgraph/updatestate(config:values:asnode:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategraph/compiledgraph/updatestate(config:values:asnode:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategraph/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategraph/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategraph/init(channels:statefactory:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategraph/init(channels:statefactory:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategraph/setconditionalentrypoint(condition:edgemapping:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategraph/setconditionalentrypoint(condition:edgemapping:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategraph/setentrypoint(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategraph/setentrypoint(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategrapherror/duplicateedgeerror(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategrapherror/duplicateedgeerror(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategrapherror/duplicatenodeerror(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategrapherror/duplicatenodeerror(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategrapherror/edgemappingisempty/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategrapherror/edgemappingisempty/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategrapherror/entrypointnotexist(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategrapherror/entrypointnotexist(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategrapherror/error-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategrapherror/error-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategrapherror/errordescription/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategrapherror/errordescription/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategrapherror/failurereason/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategrapherror/failurereason/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategrapherror/finishpointnotexist(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategrapherror/finishpointnotexist(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategrapherror/helpanchor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategrapherror/helpanchor/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategrapherror/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategrapherror/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategrapherror/invalidedgeidentifier(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategrapherror/invalidedgeidentifier(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategrapherror/invalidnodeidentifier(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategrapherror/invalidnodeidentifier(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategrapherror/localizeddescription/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategrapherror/localizeddescription/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategrapherror/localizederror-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategrapherror/localizederror-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategrapherror/missingentrypoint/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategrapherror/missingentrypoint/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategrapherror/missingnodeinedgemapping(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategrapherror/missingnodeinedgemapping(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategrapherror/missingnodereferencedbyedge(_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategrapherror/missingnodereferencedbyedge(_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/stategrapherror/recoverysuggestion/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/stategrapherror/recoverysuggestion/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/tag/checkpoints/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/tag/checkpoints/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/tag/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/tag/index.html -------------------------------------------------------------------------------- /docs/documentation/langgraph/tag/threadid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/documentation/langgraph/tag/threadid/index.html -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/favicon.svg -------------------------------------------------------------------------------- /docs/img/added-icon.832a5d2c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/img/added-icon.832a5d2c.svg -------------------------------------------------------------------------------- /docs/img/deprecated-icon.7bf1740a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/img/deprecated-icon.7bf1740a.svg -------------------------------------------------------------------------------- /docs/img/modified-icon.efb2697d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/img/modified-icon.efb2697d.svg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/index/index.json -------------------------------------------------------------------------------- /docs/js/104.fe5974d0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/104.fe5974d0.js -------------------------------------------------------------------------------- /docs/js/337.274a8ccc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/337.274a8ccc.js -------------------------------------------------------------------------------- /docs/js/842.aeb682fd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/842.aeb682fd.js -------------------------------------------------------------------------------- /docs/js/866.6e371bd7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/866.6e371bd7.js -------------------------------------------------------------------------------- /docs/js/chunk-vendors.bdb7cbba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/chunk-vendors.bdb7cbba.js -------------------------------------------------------------------------------- /docs/js/documentation-topic.28579b4f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/documentation-topic.28579b4f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-bash-js.702f0c5c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/highlight-js-bash-js.702f0c5c.js -------------------------------------------------------------------------------- /docs/js/highlight-js-c-js.063069d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/highlight-js-c-js.063069d3.js -------------------------------------------------------------------------------- /docs/js/highlight-js-cpp-js.458a9ae4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/highlight-js-cpp-js.458a9ae4.js -------------------------------------------------------------------------------- /docs/js/highlight-js-css-js.bfc4251f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/highlight-js-css-js.bfc4251f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-custom-markdown.78c9f6ed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/highlight-js-custom-markdown.78c9f6ed.js -------------------------------------------------------------------------------- /docs/js/highlight-js-custom-swift.738731d1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/highlight-js-custom-swift.738731d1.js -------------------------------------------------------------------------------- /docs/js/highlight-js-diff-js.4db9a783.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/highlight-js-diff-js.4db9a783.js -------------------------------------------------------------------------------- /docs/js/highlight-js-http-js.f78e83c2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/highlight-js-http-js.f78e83c2.js -------------------------------------------------------------------------------- /docs/js/highlight-js-java-js.4fe21e94.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/highlight-js-java-js.4fe21e94.js -------------------------------------------------------------------------------- /docs/js/highlight-js-javascript-js.dfc9d16d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/highlight-js-javascript-js.dfc9d16d.js -------------------------------------------------------------------------------- /docs/js/highlight-js-json-js.2a1856ba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/highlight-js-json-js.2a1856ba.js -------------------------------------------------------------------------------- /docs/js/highlight-js-llvm-js.26121771.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/highlight-js-llvm-js.26121771.js -------------------------------------------------------------------------------- /docs/js/highlight-js-markdown-js.a2f456af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/highlight-js-markdown-js.a2f456af.js -------------------------------------------------------------------------------- /docs/js/highlight-js-objectivec-js.74dea052.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/highlight-js-objectivec-js.74dea052.js -------------------------------------------------------------------------------- /docs/js/highlight-js-perl-js.da6eda82.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/highlight-js-perl-js.da6eda82.js -------------------------------------------------------------------------------- /docs/js/highlight-js-php-js.c458ffa4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/highlight-js-php-js.c458ffa4.js -------------------------------------------------------------------------------- /docs/js/highlight-js-python-js.60354774.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/highlight-js-python-js.60354774.js -------------------------------------------------------------------------------- /docs/js/highlight-js-ruby-js.7272231f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/highlight-js-ruby-js.7272231f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-scss-js.adcd11a2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/highlight-js-scss-js.adcd11a2.js -------------------------------------------------------------------------------- /docs/js/highlight-js-shell-js.0ad5b20f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/highlight-js-shell-js.0ad5b20f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-swift-js.bdd5bff5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/highlight-js-swift-js.bdd5bff5.js -------------------------------------------------------------------------------- /docs/js/highlight-js-xml-js.0d78f903.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/highlight-js-xml-js.0d78f903.js -------------------------------------------------------------------------------- /docs/js/index.d2f6f6a9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/index.d2f6f6a9.js -------------------------------------------------------------------------------- /docs/js/topic.24dedb87.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/topic.24dedb87.js -------------------------------------------------------------------------------- /docs/js/tutorials-overview.2d184ec0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/js/tutorials-overview.2d184ec0.js -------------------------------------------------------------------------------- /docs/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/docs/metadata.json -------------------------------------------------------------------------------- /hotfix-changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bsorrentino/LangGraph-Swift/HEAD/hotfix-changelog.sh --------------------------------------------------------------------------------