Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -735,3 +735,7 @@ updates:
directory: /docker/threatzone-sdk
schedule:
interval: daily
- package-ecosystem: pip
directory: /docker/anthropic
schedule:
interval: daily
1 change: 1 addition & 0 deletions docker/anthropic/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
requirements.txt
7 changes: 7 additions & 0 deletions docker/anthropic/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM demisto/python3:3.12.13.10381435

COPY requirements.txt .

RUN apk --update add --no-cache --virtual .build-dependencies python3-dev build-base wget git \
&& pip install --no-cache-dir -r requirements.txt \
&& apk del .build-dependencies
12 changes: 12 additions & 0 deletions docker/anthropic/Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
anthropic = {extras = ["bedrock", "vertex"], version = "*"}

[dev-packages]

[requires]
python_version = "3.12"
754 changes: 754 additions & 0 deletions docker/anthropic/Pipfile.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docker/anthropic/build.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
version=1.0.0
1 change: 1 addition & 0 deletions docker/anthropic/verify.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from anthropic import Anthropic, AnthropicBedrock, AnthropicVertex