This repository has been archived by the owner on May 10, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/ystepanoff/chatgpt_unofficial
- Loading branch information
Showing
1 changed file
with
82 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 |
---|---|---|
@@ -1,2 +1,84 @@ | ||
# chatgpt_unofficial | ||
Unofficial API wrapping for OpenAI ChatGPT: https://chat.openai.com/ | ||
|
||
# Example usage: | ||
1. Clone the project. | ||
2. Create virtual environment and install requirements. | ||
3. Install Chrome binary and ChromeDriver. | ||
4. | ||
|
||
``` | ||
$ python example.py --email <OpenAI e-mail> --password <OpenAI password> | ||
> Hello! | ||
Hello! How can I help you today? | ||
> Write Haskell code for the Ford-Fulkerson algorithm. | ||
Here is an example implementation of the Ford-Fulkerson algorithm in Haskell: | ||
import Data.Array | ||
import Data.List | ||
import qualified Data.Set as Set | ||
-- The maximum flow in the given graph. | ||
maxFlow :: Graph -> Int | ||
maxFlow graph@(Graph _ _ s t) = | ||
let (_, flow) = maxFlowRecursive graph s t [] | ||
in flow | ||
-- Recursive function that computes the maximum flow in a given graph. | ||
maxFlowRecursive :: Graph -> Vertex -> Vertex -> [Vertex] -> (Path, Int) | ||
maxFlowRecursive graph@(Graph vertices edges _ _) source target visited = | ||
-- If we have reached the target, we are done. | ||
if source == target | ||
then ([], 0) | ||
else | ||
-- Otherwise, find the next edge to explore. | ||
let nextEdge = findEdge graph source visited | ||
in case nextEdge of | ||
-- If there are no more edges to explore, we are done. | ||
Nothing -> ([], 0) | ||
-- If there is an edge to explore, continue the search. | ||
Just (Edge u v capacity flow, remaining) -> | ||
let (path, flowDelta) = maxFlowRecursive graph v target (u:visited) | ||
in if flowDelta == 0 | ||
then ([], 0) | ||
else (Edge u v capacity flow:path, flowDelta) | ||
-- Finds the next edge to explore in the search for the maximum flow. | ||
findEdge :: Graph -> Vertex -> [Vertex] -> Maybe (Edge, [Vertex]) | ||
findEdge (Graph vertices edges _ _) vertex visited = | ||
let availableEdges = filter (\(Edge u v _ _) -> u == vertex && not (v `elem` visited)) edges | ||
in case availableEdges of | ||
[] -> Nothing | ||
_ -> | ||
-- Select the edge with the minimum remaining capacity. | ||
let edge = minimumBy (\(Edge _ _ capacity1 _) (Edge _ _ capacity2 _) -> compare capacity1 capacity2) availableEdges | ||
in Just (edge, visited) | ||
-- Represents a graph with vertices and edges. | ||
data Graph = Graph { | ||
vertices :: Set.Set Vertex, | ||
edges :: [Edge], | ||
source :: Vertex, | ||
target :: Vertex | ||
} deriving (Eq, Show) | ||
-- Represents an edge in the graph. | ||
data Edge = Edge { | ||
u :: Vertex, | ||
v :: Vertex, | ||
capacity :: Int, | ||
flow :: Int | ||
} deriving (Eq, Show) | ||
-- Represents a vertex in the graph. | ||
type Vertex = Int | ||
To use this code, you will need to create a `Graph` object with the desired vertices and edges, and then call `maxFlow` on the `Graph` to compute the maximum flow. For example: | ||
let graph = Graph (Set.fromList [1, 2, 3, 4, 5]) [Edge 1 2 10 0, Edge 1 3 5 0, Edge 2 3 2 0, Edge 2 4 4 0, Edge 3 5 10 0, Edge 4 5 10 0] 1 5 | ||
let maxFlow = maxFlow graph | ||
This code assumes that the vertices are represented using integers, and that the edges are represented using the `Edge` data type defined above. You can modify the code as needed to suit your specific | ||
> | ||
``` |