-
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
6 changed files
with
51 additions
and
0 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,24 @@ | ||
name: Publish NuGet Package | ||
on: | ||
push: | ||
tags: | ||
- "*" | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: mcr.microsoft.com/dotnet/sdk:8.0 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: publish LamgEnv | ||
run: | | ||
dotnet restore | ||
dotnet publish -c Release | ||
dotnet pack | ||
dotnet nuget push nupkg/*.nupkg -k $NUGET_API_KEY -s https://api.nuget.org/v3/index.json | ||
working-directory: ./Lib | ||
env: | ||
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} |
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.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,11 @@ | ||
prompt: | ||
|
||
``` | ||
logo for program for chatting with large language models, based on a friendly robot face | ||
``` | ||
|
||
revised prompt: | ||
|
||
``` | ||
Design a logo representing a program used for engaging in conversations with large language models. The logo should visually convey interaction and comprehension. Center the design around an amicable robot face, highlighting the traits of approachability and intelligence. The robot should have a friendly smile and its eyes should imply an understanding. Use a blend of modern and futuristic aesthetics, with simplicity and clean lines. Keep the color palette cool and understate, preferably with shades of blue and grey, to bring out the technology and digital theme. | ||
``` |