openagentflow 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="https://raw.githubusercontent.com/OpenAgentFlow/OpenAgentFlow/
|
|
2
|
+
<img src="https://raw.githubusercontent.com/OpenAgentFlow/OpenAgentFlow/master/docs/assets/oaf-logo.svg" alt="OpenAgentFlow Logo" width="160"/>
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
# OpenAgentFlow
|
|
@@ -11,13 +11,13 @@
|
|
|
11
11
|
[](#multi-llm--runtime-integration)
|
|
12
12
|
[](#multi-llm--runtime-integration)
|
|
13
13
|
[](https://marketplace.visualstudio.com/items?itemName=OpenAgentFlow.openagentflow-support)
|
|
14
|
-
[](https://github.com/OpenAgentFlow/OpenAgentFlow/blob/
|
|
14
|
+
[](https://github.com/OpenAgentFlow/OpenAgentFlow/blob/master/docs/index.md)
|
|
15
15
|
[](https://opensource.org/licenses/MIT)
|
|
16
16
|
|
|
17
17
|
> *What OpenAPI is for REST APIs, OpenAgentFlow (`.oaf`) is for AI agent workflows.*
|
|
18
18
|
|
|
19
19
|
<p align="center">
|
|
20
|
-
<img src="https://raw.githubusercontent.com/OpenAgentFlow/OpenAgentFlow/
|
|
20
|
+
<img src="https://raw.githubusercontent.com/OpenAgentFlow/OpenAgentFlow/master/docs/assets/demo.gif" alt="OpenAgentFlow Demo" width="800"/>
|
|
21
21
|
</p>
|
|
22
22
|
|
|
23
23
|
### ⚡ The 60-Second Example
|
|
@@ -150,16 +150,16 @@ If you prefer creating workflows from scratch in your own workspace without clon
|
|
|
150
150
|
oaf run my-workflow.oaf --input data.json
|
|
151
151
|
```
|
|
152
152
|
|
|
153
|
-
> 📖 **For the full guide, see [Documentation](https://github.com/OpenAgentFlow/OpenAgentFlow/blob/
|
|
153
|
+
> 📖 **For the full guide, see [Documentation](https://github.com/OpenAgentFlow/OpenAgentFlow/blob/master/docs/index.md)**.
|
|
154
154
|
|
|
155
155
|
---
|
|
156
156
|
|
|
157
157
|
## 📖 Documentation
|
|
158
158
|
|
|
159
159
|
The complete documentation is available in our GitHub `docs/` directory, including:
|
|
160
|
-
* **[Language Reference](https://github.com/OpenAgentFlow/OpenAgentFlow/blob/
|
|
161
|
-
* **[Formal Specs](https://github.com/OpenAgentFlow/OpenAgentFlow/blob/
|
|
162
|
-
* **[API & CLI Ref](https://github.com/OpenAgentFlow/OpenAgentFlow/blob/
|
|
160
|
+
* **[Language Reference](https://github.com/OpenAgentFlow/OpenAgentFlow/blob/master/docs/language/oaf-language.md):** Complete `.oaf` syntax.
|
|
161
|
+
* **[Formal Specs](https://github.com/OpenAgentFlow/OpenAgentFlow/blob/master/spec/SPEC.md):** EBNF grammar, semantic rules, and IR schema.
|
|
162
|
+
* **[API & CLI Ref](https://github.com/OpenAgentFlow/OpenAgentFlow/blob/master/docs/cli/cli-reference.md):** Programmatic API and command-line flags.
|
|
163
163
|
|
|
164
164
|
---
|
|
165
165
|
|
|
@@ -253,7 +253,7 @@ When compiling to LangGraph, the runtime automatically manages providers. You ca
|
|
|
253
253
|
|
|
254
254
|
## 🤝 Contributing
|
|
255
255
|
|
|
256
|
-
We welcome contributions from developers, researchers, and engineers! Whether you want to pick up a [`good first issue`](https://github.com/OpenAgentFlow/openagentflow/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22), help build our planned Phase 5 target adapters (**Microsoft AutoGen** or **CrewAI**), or propose language enhancements, please check out our detailed [Contributing Guide](https://github.com/OpenAgentFlow/OpenAgentFlow/blob/
|
|
256
|
+
We welcome contributions from developers, researchers, and engineers! Whether you want to pick up a [`good first issue`](https://github.com/OpenAgentFlow/openagentflow/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22), help build our planned Phase 5 target adapters (**Microsoft AutoGen** or **CrewAI**), or propose language enhancements, please check out our detailed [Contributing Guide](https://github.com/OpenAgentFlow/OpenAgentFlow/blob/master/CONTRIBUTING.md) to get started.
|
|
257
257
|
|
|
258
258
|
---
|
|
259
259
|
|
package/package.json
CHANGED