-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
44f5d29
commit 4ac5517
Showing
48 changed files
with
3,147 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# AI Keys | ||
# LLMs | ||
OPENAI_API_KEY="key here" | ||
GOOGLE_AI_API_KEY="key here" | ||
ANTHROPIC_API_KEY="key here" | ||
# TTS | ||
ELEVENLABS_API_KEY="key here" | ||
NEETS_API_KEY="key here" | ||
# Image | ||
PEXELS_API_KEY="key here" | ||
|
||
# Server Config | ||
SERVER_RES_PATH="res" | ||
SERVER_TEMP_PATH="video_temp" | ||
SERVER_IP="localhost" | ||
SERVER_PORT=3001 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -132,7 +132,6 @@ dist | |
# Old code | ||
old/ | ||
python/ | ||
ui/ | ||
|
||
# Video/audio output | ||
*.mp4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# v0.2.0 | ||
- TODO: Add description | ||
- Inital release of local web UI (Frontend uses Next.js, backend uses Express.js) | ||
- Server API support (--server) (gets API keys from environment variables) | ||
- Reworked AI script generation by giving each video type its own prompt to build its data object | ||
- Support for getting API keys from environment variables | ||
- OpenAI API support | ||
- Google Gemini AI API support | ||
- Anthropic (Claude) API support | ||
- Added video orientation support (vertical, horizontal) | ||
- Forked `ffcreator` and `inkpaint` as internal dependencies in `packages` directory | ||
|
||
# v0.1.1 | ||
- Fixed bug that prevented the program from running | ||
|
||
# v0.1.0 | ||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# The URL of the backend server | ||
NEXT_PUBLIC_BACKEND_URL=http://localhost:3001 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
.now/* | ||
*.css | ||
.changeset | ||
dist | ||
esm/* | ||
public/* | ||
tests/* | ||
scripts/* | ||
*.config.js | ||
.DS_Store | ||
node_modules | ||
coverage | ||
.next | ||
build | ||
!.commitlintrc.cjs | ||
!.lintstagedrc.cjs | ||
!jest.config.js | ||
!plopfile.js | ||
!react-shim.js | ||
!tsup.config.ts |
Oops, something went wrong.