Skip to content

Commit

Permalink
[CLEANUP]
Browse files Browse the repository at this point in the history
  • Loading branch information
Kye committed Mar 5, 2024
1 parent f015808 commit 58c55b1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ print(f"Total cost: ${cost:.5f}")
```python
from swarms_cloud.api_key_generator import generate_api_key

generate_api_key(prefix="sk", length=30)
out = generate_api_key(prefix="sk", length=30)

print(out)

```

Expand Down
2 changes: 1 addition & 1 deletion scripts/main2.tf
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ resource "aws_ecs_task_definition" "app_task" {
"name": "s3-sync-container",
"image": "amazon/aws-cli",
"entryPoint": ["sh", "-c"],
"command": [aws s3 sync s3://qwenvlchat /qwenvl"],
"command": ["aws s3 sync s3://qwenvlchat /qwenvl"],
"mountPoints": [
{
"sourceVolume": "efs-volume",
Expand Down

0 comments on commit 58c55b1

Please sign in to comment.