mirror of https://github.com/aliasrobotics/cai.git
Merge remote-tracking branch 'upstream/main'
update fork to the last version
This commit is contained in:
commit
9b5b91828d
|
|
@ -31,6 +31,7 @@
|
|||
[](https://github.com/aliasrobotics/cai)
|
||||
[](https://discord.gg/fnUFcTaQAC)
|
||||
[](https://arxiv.org/pdf/2504.06017)
|
||||
[](https://arxiv.org/abs/2506.23592)
|
||||
|
||||
|
||||
|
||||
|
|
@ -135,7 +136,9 @@ Cybersecurity AI is a critical field, yet many groups are misguidedly pursuing i
|
|||
|
||||
- [Autonomous Cyber](https://www.acyber.co/)
|
||||
- [CrackenAGI](https://cracken.ai/)
|
||||
- [ETHIACK](https://ethiack.com/)
|
||||
- [Horizon3](https://horizon3.ai/)
|
||||
- [Lakera](https://lakera.ai)
|
||||
- [Mindfort](www.mindfort.ai)
|
||||
- [Mindgard](https://mindgard.ai/)
|
||||
- [NDAY Security](https://ndaysecurity.com/)
|
||||
|
|
@ -785,7 +788,7 @@ pre-commit run --all-files # all files
|
|||
|
||||
### Optional Requirements: caiextensions
|
||||
|
||||
Currently, the extensions are not available as they have been (largely) integrated or are in the process of being integrated into the core architecture. We aim to have everything converge in version 0.4.x. Coming soon!
|
||||
Currently, the extensions are not publicly available as the engineering endeavour to maintain them is significant. Instead, we're making selected custom caiextensions available for partner companies across collaborations.
|
||||
|
||||
### :information_source: Usage Data Collection
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[project]
|
||||
name = "cai-framework"
|
||||
version = "0.5.2"
|
||||
version = "0.5.3"
|
||||
description = "Cybersecurity AI Framework"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.9"
|
||||
|
|
|
|||
|
|
@ -2679,7 +2679,7 @@ class OpenAIChatCompletionsModel(Model):
|
|||
model_str = str(kwargs["model"]).lower()
|
||||
|
||||
if "alias" in model_str:
|
||||
kwargs["api_base"] = "http://api.aliasrobotics.com:666/"
|
||||
kwargs["api_base"] = "https://api.aliasrobotics.com:666/"
|
||||
kwargs["custom_llm_provider"] = "openai"
|
||||
kwargs["api_key"] = os.getenv("ALIAS_API_KEY", "sk-alias-1234567890")
|
||||
elif "/" in model_str:
|
||||
|
|
|
|||
Loading…
Reference in New Issue