mirror of
https://github.com/H0llyW00dzZ/GoGenAI-Terminal-Chat.git
synced 2025-02-06 11:00:02 +00:00
Chore License Formatting (#245)
* Chore License Formatting - [+] chore(cmd): add license information to constant.go and docs.go files - [+] chore(terminal): add license information to all terminal package files * Chore [Terminal] [Tools] License Formatting - [+] chore(constant.go): add license header to constant.go file - [+] chore(cryptorand.go): add license header to cryptorand.go file - [+] chore(docs.go): add license header to docs.go file * Chore [Terminal] [Safety Settings] License Formatting - [+] chore(safety_settings.go): add license header and note about safety settings not affecting complexity
This commit is contained in:
parent
ae2302fb80
commit
8bcb35ad64
@ -1,3 +1,7 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
package main
|
||||
|
||||
// currently unused
|
||||
|
@ -1,3 +1,7 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
// Package cmd/main is the entry point of the GoGenAI-Terminal-Chat application.
|
||||
// It sets up the environment for the chat session and starts the interaction
|
||||
// between the user and the generative AI model.
|
||||
|
@ -1,4 +1,5 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
package main
|
||||
|
@ -1,4 +1,5 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
package terminal
|
||||
|
@ -1,4 +1,5 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
package terminal
|
||||
|
@ -1,4 +1,5 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
package terminal
|
||||
|
@ -1,4 +1,5 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
package terminal
|
||||
|
@ -1,4 +1,5 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
package terminal
|
||||
|
@ -1,4 +1,5 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
package terminal
|
||||
|
@ -1,4 +1,5 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
package terminal
|
||||
|
@ -1,4 +1,5 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
package terminal
|
||||
|
@ -1,3 +1,7 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
// Package terminal provides an interface to interact with a Generative AI model
|
||||
// in a terminal-based chat application. It manages the chat session, user input,
|
||||
// AI communication, and displays the chat history.
|
||||
|
@ -1,4 +1,5 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
package terminal
|
||||
|
@ -1,4 +1,5 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
package terminal
|
||||
|
@ -1,4 +1,5 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
package fun_stuff
|
||||
|
@ -1,4 +1,5 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
package terminal
|
||||
|
@ -1,4 +1,5 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
package terminal
|
||||
|
@ -1,4 +1,5 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
package terminal
|
||||
|
@ -1,4 +1,5 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
package terminal
|
||||
|
@ -1,4 +1,5 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
package terminal
|
||||
|
@ -1,5 +1,7 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
//
|
||||
// Note: The safety settings listed below will not affect complexity (same as Command Registry), unlike 'if', 'for', 'case', '&&' or '||' which would increase complexity.
|
||||
// For instance, you can introduce numerous settings (e.g., low, high, default, etc) here without impacting the complexity.
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
package terminal
|
||||
|
@ -1,4 +1,5 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
package terminal
|
||||
|
@ -1,3 +1,7 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
package tools
|
||||
|
||||
const (
|
||||
|
@ -1,4 +1,5 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
package tools
|
||||
|
@ -1,3 +1,7 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
// Package tools encapsulates a collection of utility functions designed to support
|
||||
// various common operations throughout the application. These utilities provide
|
||||
// essential functionalities such as secure random string generation, data transformation,
|
||||
|
@ -1,4 +1,5 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
package tour
|
||||
|
@ -1,4 +1,5 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
package tour
|
||||
|
@ -1,4 +1,5 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
// Package tour provides a collection of string manipulation utilities.
|
||||
|
@ -1,3 +1,7 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
package terminal
|
||||
|
||||
// handleK8sCommand would be a handler function for a hypothetical ":k8s" command.
|
||||
|
@ -1,4 +1,5 @@
|
||||
// Copyright (c) 2024 H0llyW00dzZ
|
||||
//
|
||||
// License: MIT License
|
||||
|
||||
package terminal
|
||||
|
Loading…
x
Reference in New Issue
Block a user