rcrewai 0.1.0 → 0.2.0
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.
- checksums.yaml +4 -4
- data/docs/api/agent.md +429 -0
- data/docs/api/task.md +494 -0
- data/docs/examples/api-integration.md +829 -0
- data/docs/examples/async-execution.md +893 -0
- data/docs/examples/code-review-crew.md +660 -0
- data/docs/examples/content-marketing-pipeline.md +681 -0
- data/docs/examples/custom-tools.md +1224 -0
- data/docs/examples/customer-support.md +717 -0
- data/docs/examples/data-analysis-team.md +677 -0
- data/docs/examples/database-operations.md +1298 -0
- data/docs/examples/ecommerce-operations.md +990 -0
- data/docs/examples/financial-analysis.md +857 -0
- data/docs/examples/hierarchical-crew.md +479 -0
- data/docs/examples/product-development.md +688 -0
- data/docs/examples/production-ready-crew.md +384 -408
- data/docs/examples/research-development.md +1225 -0
- data/docs/examples/social-media.md +1073 -0
- data/docs/examples/task-automation.md +527 -0
- data/docs/examples/tool-composition.md +1075 -0
- data/docs/examples/web-scraping.md +1201 -0
- data/docs/tutorials/advanced-agents.md +1014 -0
- data/docs/tutorials/custom-tools.md +1242 -0
- data/docs/tutorials/deployment.md +1836 -0
- data/docs/tutorials/index.md +184 -0
- data/docs/tutorials/multiple-crews.md +1692 -0
- data/lib/rcrewai/llm_clients/anthropic.rb +1 -1
- data/lib/rcrewai/version.rb +1 -1
- metadata +26 -2
data/lib/rcrewai/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rcrewai
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- gkosmo
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-08-
|
11
|
+
date: 2025-08-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -295,17 +295,41 @@ files:
|
|
295
295
|
- docs/_layouts/default.html
|
296
296
|
- docs/_layouts/example.html
|
297
297
|
- docs/_layouts/tutorial.html
|
298
|
+
- docs/api/agent.md
|
298
299
|
- docs/api/configuration.md
|
299
300
|
- docs/api/crew.md
|
300
301
|
- docs/api/index.md
|
302
|
+
- docs/api/task.md
|
301
303
|
- docs/api/tools.md
|
302
304
|
- docs/assets/css/style.css
|
305
|
+
- docs/examples/api-integration.md
|
306
|
+
- docs/examples/async-execution.md
|
307
|
+
- docs/examples/code-review-crew.md
|
308
|
+
- docs/examples/content-marketing-pipeline.md
|
309
|
+
- docs/examples/custom-tools.md
|
310
|
+
- docs/examples/customer-support.md
|
311
|
+
- docs/examples/data-analysis-team.md
|
312
|
+
- docs/examples/database-operations.md
|
313
|
+
- docs/examples/ecommerce-operations.md
|
314
|
+
- docs/examples/financial-analysis.md
|
315
|
+
- docs/examples/hierarchical-crew.md
|
303
316
|
- docs/examples/human-in-the-loop.md
|
304
317
|
- docs/examples/index.md
|
318
|
+
- docs/examples/product-development.md
|
305
319
|
- docs/examples/production-ready-crew.md
|
320
|
+
- docs/examples/research-development.md
|
306
321
|
- docs/examples/simple-research-crew.md
|
322
|
+
- docs/examples/social-media.md
|
323
|
+
- docs/examples/task-automation.md
|
324
|
+
- docs/examples/tool-composition.md
|
325
|
+
- docs/examples/web-scraping.md
|
307
326
|
- docs/index.md
|
327
|
+
- docs/tutorials/advanced-agents.md
|
328
|
+
- docs/tutorials/custom-tools.md
|
329
|
+
- docs/tutorials/deployment.md
|
308
330
|
- docs/tutorials/getting-started.md
|
331
|
+
- docs/tutorials/index.md
|
332
|
+
- docs/tutorials/multiple-crews.md
|
309
333
|
- examples/async_execution_example.rb
|
310
334
|
- examples/hierarchical_crew_example.rb
|
311
335
|
- examples/human_in_the_loop_example.rb
|