rcrewai 0.3.0 → 0.5.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.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rcrewai
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - gkosmo
@@ -302,6 +302,7 @@ files:
302
302
  - CHANGELOG.md
303
303
  - LICENSE
304
304
  - README.md
305
+ - ROADMAP.md
305
306
  - Rakefile
306
307
  - bin/rcrewai
307
308
  - docs/_config.yml
@@ -348,20 +349,36 @@ files:
348
349
  - docs/tutorials/index.md
349
350
  - docs/tutorials/multiple-crews.md
350
351
  - docs/upgrading-to-0.3.md
352
+ - docs/upgrading-to-0.4.md
351
353
  - examples/async_execution_example.rb
354
+ - examples/flow_example.rb
352
355
  - examples/hierarchical_crew_example.rb
353
356
  - examples/human_in_the_loop_example.rb
357
+ - examples/knowledge_rag_example.rb
354
358
  - examples/mcp_example.rb
355
359
  - examples/native_tools_example.rb
360
+ - examples/planning_and_training_example.rb
356
361
  - examples/streaming_example.rb
362
+ - examples/structured_output_example.rb
357
363
  - lib/rcrewai.rb
358
364
  - lib/rcrewai/agent.rb
365
+ - lib/rcrewai/agent_augmentations.rb
359
366
  - lib/rcrewai/async_executor.rb
360
367
  - lib/rcrewai/cli.rb
361
368
  - lib/rcrewai/configuration.rb
369
+ - lib/rcrewai/context_window.rb
362
370
  - lib/rcrewai/crew.rb
363
371
  - lib/rcrewai/events.rb
372
+ - lib/rcrewai/flow.rb
373
+ - lib/rcrewai/flow/state.rb
374
+ - lib/rcrewai/flow/state_store.rb
364
375
  - lib/rcrewai/human_input.rb
376
+ - lib/rcrewai/knowledge.rb
377
+ - lib/rcrewai/knowledge/base.rb
378
+ - lib/rcrewai/knowledge/chunker.rb
379
+ - lib/rcrewai/knowledge/embedder.rb
380
+ - lib/rcrewai/knowledge/sources.rb
381
+ - lib/rcrewai/knowledge/store.rb
365
382
  - lib/rcrewai/legacy_react_runner.rb
366
383
  - lib/rcrewai/llm_client.rb
367
384
  - lib/rcrewai/llm_clients/anthropic.rb
@@ -376,9 +393,13 @@ files:
376
393
  - lib/rcrewai/mcp/transport/http.rb
377
394
  - lib/rcrewai/mcp/transport/stdio.rb
378
395
  - lib/rcrewai/memory.rb
396
+ - lib/rcrewai/multimodal.rb
397
+ - lib/rcrewai/output_schema.rb
398
+ - lib/rcrewai/planning.rb
379
399
  - lib/rcrewai/pricing.rb
380
400
  - lib/rcrewai/process.rb
381
401
  - lib/rcrewai/provider_schema.rb
402
+ - lib/rcrewai/rate_limiter.rb
382
403
  - lib/rcrewai/sse_parser.rb
383
404
  - lib/rcrewai/task.rb
384
405
  - lib/rcrewai/tool_runner.rb