├── .gitignore
├── Dockerfile
├── LICENSE
├── README.md
├── README_zh.md
├── conf
└── conf.go
├── config.example.toml
├── docker-compose.yaml
├── external
├── Dockerfile
├── api.py
└── requirements.txt
├── go.mod
├── go.sum
├── main.go
├── poe
├── poe.go
└── struct.go
├── router
└── router.go
└── util
└── util.go
/.gitignore:
--------------------------------------------------------------------------------
1 | .idea
2 | config.toml
3 | poe-openai-proxy.exe
4 | test
5 | start-poe-api.bat
6 | start-poe-openai-proxy.bat
7 | external/__pycache__
8 | /poe-openai-proxy
9 | ssl
10 |
--------------------------------------------------------------------------------
/Dockerfile:
--------------------------------------------------------------------------------
1 | FROM golang:1.20-alpine
2 |
3 | WORKDIR /app
4 | COPY . .
5 |
6 | RUN go build
7 |
8 | EXPOSE 3700
9 | CMD [ "/app/poe-openai-proxy" ]
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # poe-openai-proxy
2 |
3 | A wrapper that lets you use the reverse-engineered Python library `poe-api` as if it was the OpenAI API for ChatGPT. You can connect your favorite OpenAI API based apps to this proxy and enjoy the ChatGPT API for free!
4 |
5 | [Poe.com](https://poe.com/) from Quora is a free web app that lets you chat with GPT models. `poe-api` is a Python library that reverse-engineered `poe.com` so you can use Python to call `poe`. This project is a wrapper around `poe-api` that makes it accessible through an HTTP API, which mimics the official OpenAI API for ChatGPT so it can work with other programs that use OpenAI API for their features.
6 |
7 | [简体中文](README_zh.md)
8 |
9 | ## Installation
10 |
11 | 1. Clone this repository to your local machine:
12 |
13 | ```bash
14 | git clone https://github.com/juzeon/poe-openai-proxy.git
15 | cd poe-openai-proxy/
16 | ```
17 |
18 | 2. Install dependencies from requirements.txt:
19 |
20 | ```bash
21 | pip install -r external/requirements.txt
22 | ```
23 |
24 | 3. Create the configuration file in the root folder of the project. Instructions are written in the comments:
25 |
26 | ```bash
27 | cp config.example.toml config.toml
28 | vim config.toml
29 | ```
30 |
31 | 4. Start the Python backend for `poe-api`:
32 |
33 | ```bash
34 | python external/api.py # Running on port 5100
35 | ```
36 |
37 | 5. Build and start the Go backend:
38 |
39 | ```bash
40 | go build
41 | chmod +x poe-openai-proxy
42 | ./poe-openai-proxy
43 | ```
44 |
45 | ### Docker support
46 |
47 | If you would like to use docker, just run `docker-compose up -d` after creating `config.toml` according to the instructions above.
48 |
49 | ## Usage
50 |
51 | See [OpenAI Document](https://platform.openai.com/docs/api-reference/chat/create) for more details on how to use the ChatGPT API.
52 |
53 | Just replace `https://api.openai.com` in your code with `http://localhost:3700` and you're good to go.
54 |
55 | Supported routes:
56 |
57 | - /models
58 | - /chat/completions
59 | - /v1/models
60 | - /v1/chat/completions
61 |
62 | Supported parameters:
63 |
64 | | Parameter | Note |
65 | | --------- | ------------------------------------------------------------ |
66 | | model | See `[bot]` section of `config.example.toml`. Model names are mapped to bot nicknames. |
67 | | messages | You can use this as in the official API, except for `name`. |
68 | | stream | You can use this as in the official API. |
69 |
70 | Other parameters will be ignored.
71 |
72 | ## Credit
73 |
74 |
75 |
--------------------------------------------------------------------------------
/README_zh.md:
--------------------------------------------------------------------------------
1 | # poe-openai-proxy
2 |
3 | 这是一个包装器,让你可以使用反向工程的 Python 库 `poe-api` 作为 OpenAI API for ChatGPT 的接口。你可以将你喜欢的基于 OpenAI API 的应用程序连接到这个代理,免费享受 ChatGPT API 的功能!
4 |
5 | [Poe.com](https://poe.com/) 是一个免费的网页应用,让你可以和 GPT 模型聊天。`poe-api` 是一个 Python 库,它反向工程了 `poe.com`,所以你可以用 Python 来调用 `poe`。这个项目是一个围绕 `poe-api` 的包装器,让它可以通过一个 HTTP API 来访问,这个 API 模仿了官方的 OpenAI API for ChatGPT,所以它可以和其他使用 OpenAI API for ChatGPT 的程序兼容。
6 |
7 | ## 安装
8 |
9 | 1. 将这个仓库克隆到你的本地机器:
10 |
11 | ```
12 | git clone https://github.com/juzeon/poe-openai-proxy.git
13 | cd poe-openai-proxy/
14 | ```
15 |
16 | 2. 从requirements.txt安装依赖:
17 |
18 | ```bash
19 | pip install -r external/requirements.txt
20 | ```
21 |
22 | 3. 在项目的根目录创建配置文件。说明写在注释里:
23 |
24 | ```bash
25 | cp config.example.toml config.toml
26 | vim config.toml
27 | ```
28 |
29 | 4. 启动`poe-api`的Python后端:
30 |
31 | ```bash
32 | python external/api.py # 运行在5100端口上
33 | ```
34 |
35 | 5. 构建并启动Go后端:
36 |
37 | ```bash
38 | go build
39 | chmod +x poe-openai-proxy
40 | ./poe-openai-proxy
41 | ```
42 |
43 | ### Docker支持
44 |
45 | 如果你想使用docker,只需要在按照上面的说明创建好`config.toml`之后运行`docker-compose up -d`即可。
46 |
47 | ## 使用
48 |
49 | 参见[OpenAI文档](https://platform.openai.com/docs/api-reference/chat/create)了解更多关于如何使用ChatGPT API的细节。
50 |
51 | 只需要把你的代码里的`https://api.openai.com`替换成`http://localhost:3700`就可以了。
52 |
53 | 支持的路由:
54 |
55 | - /models
56 | - /chat/completions
57 | - /v1/models
58 | - /v1/chat/completions
59 |
60 | 支持的参数:
61 |
62 | | 参数 | 说明 |
63 | | -------- | ------------------------------------------------------------ |
64 | | model | 参见`config.example.toml`里的`[bot]`部分。模型名字对应着机器人昵称。 |
65 | | messages | 你可以像在官方API里一样使用这个参数,除了`name`。 |
66 | | stream | 你可以像在官方API里一样使用这个参数。 |
67 |
68 | 其他参数会被忽略。
69 |
70 | ## 致谢
71 |
72 |
73 |
--------------------------------------------------------------------------------
/conf/conf.go:
--------------------------------------------------------------------------------
1 | package conf
2 |
3 | import (
4 | "github.com/pelletier/go-toml/v2"
5 | "os"
6 | "strings"
7 | )
8 |
9 | type ConfigStruct struct {
10 | Port int `toml:"port"`
11 | Tokens []string `toml:"tokens"`
12 | Gateway string `toml:"gateway"`
13 | Bot map[string]string `toml:"bot"`
14 | SimulateRoles int `toml:"simulate-roles"`
15 | RateLimit int `toml:"rate-limit"`
16 | CoolDown int `toml:"cool-down"`
17 | Timeout int `toml:"timeout"`
18 | }
19 |
20 | type ModelDef struct {
21 | ID string `json:"id"`
22 | Object string `json:"object"`
23 | Created int `json:"created"`
24 | OwnedBy string `json:"owned_by"`
25 | }
26 |
27 | type ModelsResp struct {
28 | Object string `json:"object"`
29 | Data []ModelDef `json:"data"`
30 | }
31 |
32 | func (c ConfigStruct) GetGatewayWsURL() string {
33 | str := strings.ReplaceAll(c.Gateway, "http://", "ws://")
34 | str = strings.ReplaceAll(str, "https://", "wss://")
35 | return str
36 | }
37 |
38 | var Conf ConfigStruct
39 |
40 | var Models ModelsResp
41 |
42 | func Setup() {
43 | v, err := os.ReadFile("config.toml")
44 | if err != nil {
45 | panic(err)
46 | }
47 | err = toml.Unmarshal(v, &Conf)
48 | if err != nil {
49 | panic(err)
50 | }
51 | if Conf.Port == 0 {
52 | Conf.Port = 3700
53 | }
54 | if Conf.RateLimit == 0 {
55 | Conf.RateLimit = 10
56 | }
57 | if Conf.Bot == nil {
58 | Conf.Bot = map[string]string {
59 | "gpt-3.5-turbo": "chinchilla",
60 | "gpt-4": "beaver",
61 | "gpt-3.5-turbo-0301": "a2",
62 | "gpt-4-32k": "a2_100k",
63 | "gpt-4-0314": "a2_2",
64 | "Sage": "capybara",
65 | "ChatGPT": "chinchilla",
66 | "GPT-4": "beaver",
67 | "Claude-instant": "a2",
68 | "Claude-instant-100k": "a2_100k",
69 | "Claude+": "a2_2",
70 | }
71 | }
72 |
73 | Models.Object = ""
74 |
75 | for key := range Conf.Bot {
76 | Models.Data = append(Models.Data, ModelDef{
77 | ID: key,
78 | Object: "",
79 | Created: 0,
80 | OwnedBy: "",
81 | })
82 | }
83 | }
84 |
--------------------------------------------------------------------------------
/config.example.toml:
--------------------------------------------------------------------------------
1 | # The port number for the proxy service. The proxied OpenAI API endpoint will be: http://localhost:3700/v1/chat/completions
2 | port = 3700
3 |
4 | # A list of poe tokens. You can get them from the cookies on poe.com, they look like this: p-b=fdasac5a1dfa6%3D%3D
5 | tokens = ["fdasac5a1dfa6%3D%3D"]
6 |
7 | # The proxy that will be used to connect to poe.com. Leave it blank if you do not use a proxy
8 | proxy = ""
9 |
10 | # The gateway url for the Python backend of poe-api.
11 | # Note that if you use docker this value should be changed into: http://external:5100
12 | gateway = "http://localhost:5100"
13 |
14 | # The gateway port for the Python backend of poe-api.
15 | # Must be the same as the port indicated in the `gateway` above.
16 | gateway-port = 5100
17 |
18 |
19 | # Use leading prompts to indicate roles if enabled. You'd better disable it if you are using tools like https://github.com/TheR1D/shell_gpt
20 | # 0:disable, 1:enable, 2:auto detect
21 | # Example:
22 | # ||>User:
23 | # Hello!
24 | # ||Assistant:
25 | # Hello! How can I assist you today?
26 | simulate-roles = 2
27 |
28 | # Rate limit. Default to 10 api calls per token in 1 minute
29 | rate-limit = 10
30 |
31 | # Cool down of seconds. One same token cannot be used more than once in n seconds
32 | cool-down = 3
33 |
34 | # Timeout of seconds per response chunk
35 | # This timeout will now reset every time a chunk is received
36 | # so there's no need for a very large value to compensate for a very long reply
37 | timeout = 15
38 | # Timeout for poe-api, usually it should be smaller than timeout
39 | api-timeout = 12
40 |
41 |
42 | # The bot name map to use from poe.
43 | [bot]
44 | "gpt-3.5-turbo" = "chinchilla" # ChatGPT 3.5
45 | "gpt-4" = "beaver" # ChatGPT 4
46 | "gpt-3.5-turbo-0301" = "a2" # Claude-instant
47 | "gpt-4-32k" = "a2_100k" # Claude-instant-100k
48 | "gpt-4-0314" = "a2_2" # Claude+
49 | "gpt-Sage" = "capybara" # Add `gpt-` prefix for ChatGPT Raycast plugin to pick these up
50 | "gpt-ChatGPT" = "chinchilla"
51 | "gpt-GPT-4" = "beaver"
52 | "gpt-Claude-instant" = "a2"
53 | "gpt-Claude-instant-100k" = "a2_100k"
54 | "gpt-Claude+" = "a2_2"
55 | "Sage" = "capybara"
56 | "ChatGPT" = "chinchilla"
57 | "GPT-4" = "beaver"
58 | "Claude-instant" = "a2"
59 | "Claude-instant-100k" = "a2_100k"
60 | "Claude+" = "a2_2"
--------------------------------------------------------------------------------
/docker-compose.yaml:
--------------------------------------------------------------------------------
1 | version: '3.1'
2 |
3 | services:
4 | api:
5 | build: .
6 | ports:
7 | - "3700:3700"
8 | volumes:
9 | - ./config.toml:/app/config.toml
10 | depends_on:
11 | - external
12 |
13 | external:
14 | build: ./external
15 | ports:
16 | - "5100:5100"
17 | volumes:
18 | - ./config.toml:/config.toml
19 |
--------------------------------------------------------------------------------
/external/Dockerfile:
--------------------------------------------------------------------------------
1 | FROM python:3.9
2 |
3 | WORKDIR /app
4 |
5 | COPY . .
6 | RUN pip install -r requirements.txt
7 |
8 | EXPOSE 5000
9 |
10 | CMD [ "python", "api.py" ]
11 |
--------------------------------------------------------------------------------
/external/api.py:
--------------------------------------------------------------------------------
1 | import poe
2 | import toml
3 | import os
4 | import sys
5 | import logging
6 | from flask import Flask, request
7 | from flask_sock import Sock
8 | from poe import Client
9 |
10 | poe.headers = {
11 | "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 "
12 | "Safari/537.36",
13 | "Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,"
14 | "application/signed-exchange;v=b3;q=0.7",
15 | "Accept-Encoding": "gzip, deflate, br",
16 | "Accept-Language": "zh-CN,zh-TW;q=0.9,zh;q=0.8,en-US;q=0.7,en;q=0.6",
17 | "Cache-Control": "no-cache",
18 | "Pragma": "no-cache",
19 | "Sec-Ch-Ua": "\"Chromium\";v=\"112\", \"Google Chrome\";v=\"112\", \"Not:A-Brand\";v=\"99\"",
20 | "Sec-Ch-Ua-Mobile": "?0",
21 | "Sec-Ch-Ua-Platform": "\"Windows\"",
22 | "Upgrade-Insecure-Requests": "1"
23 | }
24 |
25 | # poe.logger.setLevel(logging.INFO)
26 |
27 | file_path = os.path.abspath(sys.argv[0])
28 | file_dir = os.path.dirname(file_path)
29 | config_path = os.path.join(file_dir, "..", "config.toml")
30 | config = toml.load(config_path)
31 | proxy = config["proxy"]
32 | timeout = config["api-timeout"] or config["timeout"] or 7
33 |
34 |
35 | def get_client(token) -> Client:
36 | print("Connecting to poe...")
37 | client_poe = poe.Client(token, proxy=None if proxy == "" else proxy)
38 | return client_poe
39 |
40 |
41 | app = Flask(__name__)
42 | sock = Sock(app)
43 | sock.init_app(app)
44 | client_dict = {}
45 |
46 |
47 | def _add_token(token):
48 | if token not in client_dict.keys():
49 | try:
50 | c = get_client(token)
51 | client_dict[token] = c
52 | return "ok"
53 | except Exception as exception:
54 | print("Failed to connect to poe due to " + str(exception))
55 | return "failed: " + str(exception)
56 | else:
57 | return "exist"
58 |
59 | @app.route('/add_token', methods=['GET', 'POST'])
60 | def add_token():
61 | token = request.form['token']
62 | return _add_token(token)
63 |
64 |
65 | @app.route('/ask', methods=['GET', 'POST'])
66 | def ask():
67 | token = request.form['token']
68 | bot = request.form['bot']
69 | content = request.form['content']
70 | _add_token(token)
71 | client = client_dict[token]
72 | try:
73 | for chunk in client.send_message(bot, content, with_chat_break=True, timeout=timeout):
74 | pass
75 | return chunk["text"].strip()
76 | except Exception as e:
77 | del client_dict[token]
78 | client.disconnect_ws()
79 | errmsg = f"An exception of type {type(e).__name__} occurred. Arguments: {e.args}"
80 | print(errmsg)
81 | return errmsg
82 |
83 |
84 | @sock.route('/stream')
85 | def stream(ws):
86 | token = ws.receive()
87 | bot = ws.receive()
88 | content = ws.receive()
89 | _add_token(token)
90 | client = client_dict[token]
91 | try:
92 | for chunk in client.send_message(bot, content, with_chat_break=True, timeout=timeout):
93 | ws.send(chunk["text_new"])
94 | except Exception as e:
95 | del client_dict[token]
96 | client.disconnect_ws()
97 | errmsg = f"An exception of type {type(e).__name__} occurred. Arguments: {e.args}"
98 | print(errmsg)
99 | ws.send(errmsg)
100 | ws.close()
101 |
102 |
103 |
104 | if __name__ == '__main__':
105 | app.run(host="0.0.0.0", port=config.get('gateway-port', 5100))
106 |
--------------------------------------------------------------------------------
/external/requirements.txt:
--------------------------------------------------------------------------------
1 | poe-api
2 | flask
3 | flask-sock
4 | toml
5 |
--------------------------------------------------------------------------------
/go.mod:
--------------------------------------------------------------------------------
1 | module github.com/juzeon/poe-openai-proxy
2 |
3 | go 1.19
4 |
5 | require (
6 | github.com/gin-contrib/cors v1.4.0
7 | github.com/gin-gonic/gin v1.9.0
8 | github.com/go-resty/resty/v2 v2.7.0
9 | github.com/gorilla/websocket v1.5.0
10 | github.com/op/go-logging v0.0.0-20160315200505-970db520ece7
11 | github.com/pelletier/go-toml/v2 v2.0.7
12 | )
13 |
14 | require (
15 | github.com/bytedance/sonic v1.8.7 // indirect
16 | github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect
17 | github.com/gin-contrib/sse v0.1.0 // indirect
18 | github.com/go-playground/locales v0.14.1 // indirect
19 | github.com/go-playground/universal-translator v0.18.1 // indirect
20 | github.com/go-playground/validator/v10 v10.12.0 // indirect
21 | github.com/goccy/go-json v0.10.2 // indirect
22 | github.com/json-iterator/go v1.1.12 // indirect
23 | github.com/klauspost/cpuid/v2 v2.2.4 // indirect
24 | github.com/leodido/go-urn v1.2.3 // indirect
25 | github.com/mattn/go-isatty v0.0.18 // indirect
26 | github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
27 | github.com/modern-go/reflect2 v1.0.2 // indirect
28 | github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
29 | github.com/ugorji/go/codec v1.2.11 // indirect
30 | golang.org/x/arch v0.3.0 // indirect
31 | golang.org/x/crypto v0.8.0 // indirect
32 | golang.org/x/net v0.9.0 // indirect
33 | golang.org/x/sys v0.7.0 // indirect
34 | golang.org/x/text v0.9.0 // indirect
35 | google.golang.org/protobuf v1.30.0 // indirect
36 | gopkg.in/yaml.v3 v3.0.1 // indirect
37 | )
38 |
--------------------------------------------------------------------------------
/go.sum:
--------------------------------------------------------------------------------
1 | github.com/bytedance/sonic v1.5.0/go.mod h1:ED5hyg4y6t3/9Ku1R6dU/4KyJ48DZ4jPhfY1O2AihPM=
2 | github.com/bytedance/sonic v1.8.7 h1:d3sry5vGgVq/OpgozRUNP6xBsSo0mtNdwliApw+SAMQ=
3 | github.com/bytedance/sonic v1.8.7/go.mod h1:i736AoUSYt75HyZLoJW9ERYxcy6eaN6h4BZXU064P/U=
4 | github.com/chenzhuoyu/base64x v0.0.0-20211019084208-fb5309c8db06/go.mod h1:DH46F32mSOjUmXrMHnKwZdA8wcEefY7UVqBKYGjpdQY=
5 | github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 h1:qSGYFH7+jGhDF8vLC+iwCD4WpbV1EBDSzWkJODFLams=
6 | github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311/go.mod h1:b583jCggY9gE99b6G5LEC39OIiVsWj+R97kbl5odCEk=
7 | github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
8 | github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
9 | github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
10 | github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
11 | github.com/gin-contrib/cors v1.4.0 h1:oJ6gwtUl3lqV0WEIwM/LxPF1QZ5qe2lGWdY2+bz7y0g=
12 | github.com/gin-contrib/cors v1.4.0/go.mod h1:bs9pNM0x/UsmHPBWT2xZz9ROh8xYjYkiURUfmBoMlcs=
13 | github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE=
14 | github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI=
15 | github.com/gin-gonic/gin v1.8.1/go.mod h1:ji8BvRH1azfM+SYow9zQ6SZMvR8qOMZHmsCuWR9tTTk=
16 | github.com/gin-gonic/gin v1.9.0 h1:OjyFBKICoexlu99ctXNR2gg+c5pKrKMuyjgARg9qeY8=
17 | github.com/gin-gonic/gin v1.9.0/go.mod h1:W1Me9+hsUSyj3CePGrd1/QrKJMSJ1Tu/0hFEH89961k=
18 | github.com/go-playground/assert/v2 v2.0.1/go.mod h1:VDjEfimB/XKnb+ZQfWdccd7VUvScMdVu0Titje2rxJ4=
19 | github.com/go-playground/assert/v2 v2.2.0 h1:JvknZsQTYeFEAhQwI4qEt9cyV5ONwRHC+lYKSsYSR8s=
20 | github.com/go-playground/locales v0.14.0/go.mod h1:sawfccIbzZTqEDETgFXqTho0QybSa7l++s0DH+LDiLs=
21 | github.com/go-playground/locales v0.14.1 h1:EWaQ/wswjilfKLTECiXz7Rh+3BjFhfDFKv/oXslEjJA=
22 | github.com/go-playground/locales v0.14.1/go.mod h1:hxrqLVvrK65+Rwrd5Fc6F2O76J/NuW9t0sjnWqG1slY=
23 | github.com/go-playground/universal-translator v0.18.0/go.mod h1:UvRDBj+xPUEGrFYl+lu/H90nyDXpg0fqeB/AQUGNTVA=
24 | github.com/go-playground/universal-translator v0.18.1 h1:Bcnm0ZwsGyWbCzImXv+pAJnYK9S473LQFuzCbDbfSFY=
25 | github.com/go-playground/universal-translator v0.18.1/go.mod h1:xekY+UJKNuX9WP91TpwSH2VMlDf28Uj24BCp08ZFTUY=
26 | github.com/go-playground/validator/v10 v10.10.0/go.mod h1:74x4gJWsvQexRdW8Pn3dXSGrTK4nAUsbPlLADvpJkos=
27 | github.com/go-playground/validator/v10 v10.12.0 h1:E4gtWgxWxp8YSxExrQFv5BpCahla0PVF2oTTEYaWQGI=
28 | github.com/go-playground/validator/v10 v10.12.0/go.mod h1:hCAPuzYvKdP33pxWa+2+6AIKXEKqjIUyqsNCtbsSJrA=
29 | github.com/go-resty/resty/v2 v2.7.0 h1:me+K9p3uhSmXtrBZ4k9jcEAfJmuC8IivWHwaLZwPrFY=
30 | github.com/go-resty/resty/v2 v2.7.0/go.mod h1:9PWDzw47qPphMRFfhsyk0NnSgvluHcljSMVIq3w7q0I=
31 | github.com/goccy/go-json v0.9.7/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I=
32 | github.com/goccy/go-json v0.10.2 h1:CrxCmQqYDkv1z7lO7Wbh2HN93uovUHgrECaO5ZrCXAU=
33 | github.com/goccy/go-json v0.10.2/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I=
34 | github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
35 | github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU=
36 | github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
37 | github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
38 | github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWmnc=
39 | github.com/gorilla/websocket v1.5.0/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
40 | github.com/json-iterator/go v1.1.12 h1:PV8peI4a0ysnczrg+LtxykD8LfKY9ML6u2jnxaEnrnM=
41 | github.com/json-iterator/go v1.1.12/go.mod h1:e30LSqwooZae/UwlEbR2852Gd8hjQvJoHmT4TnhNGBo=
42 | github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg=
43 | github.com/klauspost/cpuid/v2 v2.2.4 h1:acbojRNwl3o09bUq+yDCtZFc1aiwaAAxtcn8YkZXnvk=
44 | github.com/klauspost/cpuid/v2 v2.2.4/go.mod h1:RVVoqg1df56z8g3pUjL/3lE5UfnlrJX8tyFgg4nqhuY=
45 | github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
46 | github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=
47 | github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk=
48 | github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
49 | github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
50 | github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
51 | github.com/leodido/go-urn v1.2.1/go.mod h1:zt4jvISO2HfUBqxjfIshjdMTYS56ZS/qv49ictyFfxY=
52 | github.com/leodido/go-urn v1.2.3 h1:6BE2vPT0lqoz3fmOesHZiaiFh7889ssCo2GMvLCfiuA=
53 | github.com/leodido/go-urn v1.2.3/go.mod h1:7ZrI8mTSeBSHl/UaRyKQW1qZeMgak41ANeCNaVckg+4=
54 | github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94=
55 | github.com/mattn/go-isatty v0.0.18 h1:DOKFKCQ7FNG2L1rbrmstDN4QVRdS89Nkh85u68Uwp98=
56 | github.com/mattn/go-isatty v0.0.18/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
57 | github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
58 | github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=
59 | github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
60 | github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M=
61 | github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk=
62 | github.com/op/go-logging v0.0.0-20160315200505-970db520ece7 h1:lDH9UUVJtmYCjyT0CI4q8xvlXPxeZ0gYCVvWbmPlp88=
63 | github.com/op/go-logging v0.0.0-20160315200505-970db520ece7/go.mod h1:HzydrMdWErDVzsI23lYNej1Htcns9BCg93Dk0bBINWk=
64 | github.com/pelletier/go-toml/v2 v2.0.1/go.mod h1:r9LEWfGN8R5k0VXJ+0BkIe7MYkRdwZOjgMj2KwnJFUo=
65 | github.com/pelletier/go-toml/v2 v2.0.7 h1:muncTPStnKRos5dpVKULv2FVd4bMOhNePj9CjgDb8Us=
66 | github.com/pelletier/go-toml/v2 v2.0.7/go.mod h1:eumQOmlWiOPt5WriQQqoM5y18pDHwha2N+QD+EUNTek=
67 | github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA=
68 | github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
69 | github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
70 | github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc=
71 | github.com/rogpeppe/go-internal v1.8.0/go.mod h1:WmiCO8CzOY8rg0OYDC4/i/2WRWAB6poM+XZ2dLUbcbE=
72 | github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
73 | github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
74 | github.com/stretchr/objx v0.5.0/go.mod h1:Yh+to48EsGEfYuaHDzXPcE3xhTkx73EhmCGUpEOglKo=
75 | github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
76 | github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
77 | github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
78 | github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
79 | github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
80 | github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
81 | github.com/stretchr/testify v1.8.2 h1:+h33VjcLVPDHtOdpUCuF+7gSuG3yGIftsP1YvFihtJ8=
82 | github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
83 | github.com/twitchyliquid64/golang-asm v0.15.1 h1:SU5vSMR7hnwNxj24w34ZyCi/FmDZTkS4MhqMhdFk5YI=
84 | github.com/twitchyliquid64/golang-asm v0.15.1/go.mod h1:a1lVb/DtPvCB8fslRZhAngC2+aY1QWCk3Cedj/Gdt08=
85 | github.com/ugorji/go v1.2.7/go.mod h1:nF9osbDWLy6bDVv/Rtoh6QgnvNDpmCalQV5urGCCS6M=
86 | github.com/ugorji/go/codec v1.2.7/go.mod h1:WGN1fab3R1fzQlVQTkfxVtIBhWDRqOviHU95kRgeqEY=
87 | github.com/ugorji/go/codec v1.2.11 h1:BMaWp1Bb6fHwEtbplGBGJ498wD+LKlNSl25MjdZY4dU=
88 | github.com/ugorji/go/codec v1.2.11/go.mod h1:UNopzCgEMSXjBc6AOMqYvWC1ktqTAfzJZUZgYf6w6lg=
89 | golang.org/x/arch v0.0.0-20210923205945-b76863e36670/go.mod h1:5om86z9Hs0C8fWVUuoMHwpExlXzs5Tkyp9hOrfG7pp8=
90 | golang.org/x/arch v0.3.0 h1:02VY4/ZcO/gBOH6PUaoiptASxtXU10jazRCP865E97k=
91 | golang.org/x/arch v0.3.0/go.mod h1:5om86z9Hs0C8fWVUuoMHwpExlXzs5Tkyp9hOrfG7pp8=
92 | golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
93 | golang.org/x/crypto v0.8.0 h1:pd9TJtTueMTVQXzk8E2XESSMQDj/U7OUu0PqJqPXQjQ=
94 | golang.org/x/crypto v0.8.0/go.mod h1:mRqEX+O9/h5TFCrQhkgjo2yKi0yYA+9ecGkdQoHrywE=
95 | golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
96 | golang.org/x/net v0.0.0-20211029224645-99673261e6eb/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
97 | golang.org/x/net v0.9.0 h1:aWJ/m6xSmxWBx+V0XRHTlrYrPG56jKsLdTFmsSsCzOM=
98 | golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns=
99 | golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
100 | golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
101 | golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
102 | golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
103 | golang.org/x/sys v0.0.0-20210806184541-e5e7981a1069/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
104 | golang.org/x/sys v0.0.0-20220704084225-05e143d24a9e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
105 | golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
106 | golang.org/x/sys v0.7.0 h1:3jlCCIQZPdOYu1h8BkNvLz8Kgwtae2cagcG/VamtZRU=
107 | golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
108 | golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
109 | golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
110 | golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
111 | golang.org/x/text v0.9.0 h1:2sjJmO8cDvYveuX97RDLsxlyUxLl+GHoLxBiRdHllBE=
112 | golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8=
113 | golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
114 | golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=
115 | golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
116 | google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
117 | google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
118 | google.golang.org/protobuf v1.30.0 h1:kPPoIgf3TsEvrm0PFe15JQ+570QVxYzEvvHqChK+cng=
119 | google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
120 | gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
121 | gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
122 | gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
123 | gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=
124 | gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI=
125 | gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
126 | gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
127 | gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
128 | gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
129 | gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
130 | rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4=
131 |
--------------------------------------------------------------------------------
/main.go:
--------------------------------------------------------------------------------
1 | package main
2 |
3 | import (
4 | "os"
5 | "strconv"
6 |
7 | "github.com/gin-gonic/gin"
8 | "github.com/juzeon/poe-openai-proxy/conf"
9 | "github.com/juzeon/poe-openai-proxy/poe"
10 | "github.com/juzeon/poe-openai-proxy/router"
11 | )
12 |
13 | func main() {
14 | conf.Setup()
15 | poe.Setup()
16 | engine := gin.Default()
17 | router.Setup(engine)
18 |
19 | // 检查 ssl 目录下的证书文件是否存在
20 | _, certErr := os.Stat("ssl/cert.pem")
21 | _, keyErr := os.Stat("ssl/key.pem")
22 |
23 | if certErr == nil && keyErr == nil {
24 | // SSL 证书和私钥文件都存在,启动 HTTPS 服务器
25 | err := engine.RunTLS(":"+strconv.Itoa(conf.Conf.Port), "ssl/cert.pem", "ssl/key.pem")
26 | if err != nil {
27 | panic(err)
28 | }
29 | } else {
30 | // SSL 证书或私钥文件不存在,启动 HTTP 服务器
31 | err := engine.Run(":" + strconv.Itoa(conf.Conf.Port))
32 | if err != nil {
33 | panic(err)
34 | }
35 | }
36 | }
37 |
--------------------------------------------------------------------------------
/poe/poe.go:
--------------------------------------------------------------------------------
1 | package poe
2 |
3 | import (
4 | "errors"
5 | "github.com/go-resty/resty/v2"
6 | "github.com/gorilla/websocket"
7 | "github.com/juzeon/poe-openai-proxy/conf"
8 | "github.com/juzeon/poe-openai-proxy/util"
9 | "sync"
10 | "time"
11 | )
12 |
13 | var httpClient *resty.Client
14 | var clients []*Client
15 | var clientIx = 0
16 | var clientLock = &sync.Mutex{}
17 |
18 | func Setup() {
19 | httpClient = resty.New().SetBaseURL(conf.Conf.Gateway)
20 | for _, token := range conf.Conf.Tokens {
21 | client, err := NewClient(token)
22 | if err != nil {
23 | util.Logger.Error(err)
24 | continue
25 | }
26 | clients = append(clients, client)
27 | }
28 | }
29 |
30 | type Client struct {
31 | Token string
32 | Usage []time.Time
33 | Lock bool
34 | }
35 |
36 | func NewClient(token string) (*Client, error) {
37 | util.Logger.Info("registering client: " + token)
38 | resp, err := httpClient.R().SetFormData(map[string]string{
39 | "token": token,
40 | }).Post("/add_token")
41 | if err != nil {
42 | return nil, errors.New("registering client error: " + err.Error())
43 | }
44 | util.Logger.Info("registering client: " + resp.String())
45 | return &Client{Token: token, Usage: nil, Lock: false}, nil
46 | }
47 | func (c *Client) getContentToSend(messages []Message) string {
48 | leadingMap := map[string]string{
49 | "system": "Instructions",
50 | "user": "User",
51 | "assistant": "Assistant",
52 | }
53 | content := ""
54 | var simulateRoles bool
55 | switch conf.Conf.SimulateRoles {
56 | case 0:
57 | simulateRoles = false
58 | case 1:
59 | simulateRoles = true
60 | case 2:
61 | if len(messages) == 1 && messages[0].Role == "user" ||
62 | len(messages) == 1 && messages[0].Role == "system" ||
63 | len(messages) == 2 && messages[0].Role == "system" && messages[1].Role == "user" {
64 | simulateRoles = false
65 | } else {
66 | simulateRoles = true
67 | }
68 | }
69 | for _, message := range messages {
70 | if simulateRoles {
71 | content += "||>" + leadingMap[message.Role] + ":\n" + message.Content + "\n"
72 | } else {
73 | content += message.Content + "\n"
74 | }
75 | }
76 | if simulateRoles {
77 | content += "||>Assistant:\n"
78 | }
79 | util.Logger.Debug("Generated content to send: " + content)
80 | return content
81 | }
82 | func (c *Client) Stream(messages []Message, model string) (<-chan string, error) {
83 | channel := make(chan string, 1024)
84 | content := c.getContentToSend(messages)
85 | conn, _, err := websocket.DefaultDialer.Dial(conf.Conf.GetGatewayWsURL()+"/stream", nil)
86 | if err != nil {
87 | return nil, err
88 | }
89 |
90 | bot, ok := conf.Conf.Bot[model]
91 | if !ok {
92 | bot = "capybara"
93 | }
94 | util.Logger.Info("Stream using bot", bot)
95 |
96 | err = conn.WriteMessage(websocket.TextMessage, []byte(c.Token))
97 | if err != nil {
98 | return nil, err
99 | }
100 | err = conn.WriteMessage(websocket.TextMessage, []byte(bot))
101 | if err != nil {
102 | return nil, err
103 | }
104 | err = conn.WriteMessage(websocket.TextMessage, []byte(content))
105 | if err != nil {
106 | return nil, err
107 | }
108 | go func(conn *websocket.Conn, channel chan string) {
109 | defer close(channel)
110 | defer conn.Close()
111 | for {
112 | _, v, err := conn.ReadMessage()
113 | channel <- string(v)
114 | if err != nil {
115 | if !websocket.IsCloseError(err, websocket.CloseNormalClosure) {
116 | util.Logger.Error(err)
117 | channel <- "\n\n[ERROR] " + err.Error()
118 | }
119 | channel <- "[DONE]"
120 | break
121 | }
122 | }
123 | }(conn, channel)
124 | return channel, nil
125 | }
126 | func (c *Client) Ask(messages []Message, model string) (*Message, error) {
127 | content := c.getContentToSend(messages)
128 |
129 | bot, ok := conf.Conf.Bot[model]
130 | if !ok {
131 | bot = "capybara"
132 | }
133 | util.Logger.Info("Ask using bot", bot)
134 |
135 | resp, err := httpClient.R().SetFormData(map[string]string{
136 | "token": c.Token,
137 | "bot": bot,
138 | "content": content,
139 | }).Post("/ask")
140 | if err != nil {
141 | return nil, err
142 | }
143 | return &Message{
144 | Role: "assistant",
145 | Content: resp.String(),
146 | Name: "",
147 | }, nil
148 | }
149 | func (c *Client) Release() {
150 | clientLock.Lock()
151 | defer clientLock.Unlock()
152 | c.Lock = false
153 | }
154 |
155 | func GetClient() (*Client, error) {
156 | clientLock.Lock()
157 | defer clientLock.Unlock()
158 | if len(clients) == 0 {
159 | return nil, errors.New("no client is available")
160 | }
161 | for i := 0; i < len(clients); i++ {
162 | client := clients[clientIx%len(clients)]
163 | clientIx++
164 | if client.Lock {
165 | continue
166 | }
167 | if len(client.Usage) > 0 {
168 | lastUsage := client.Usage[len(client.Usage)-1]
169 | if time.Since(lastUsage) < time.Duration(conf.Conf.CoolDown)*time.Second {
170 | continue
171 | }
172 | }
173 | if len(client.Usage) < conf.Conf.RateLimit {
174 | client.Usage = append(client.Usage, time.Now())
175 | client.Lock = true
176 | return client, nil
177 | } else {
178 | usage := client.Usage[len(client.Usage)-conf.Conf.RateLimit]
179 | if time.Since(usage) <= 1*time.Minute {
180 | continue
181 | }
182 | client.Usage = append(client.Usage, time.Now())
183 | client.Lock = true
184 | return client, nil
185 | }
186 | }
187 | return nil, errors.New("no available client")
188 | }
189 |
--------------------------------------------------------------------------------
/poe/struct.go:
--------------------------------------------------------------------------------
1 | package poe
2 |
3 | type Message struct {
4 | Role string `json:"role"`
5 | Content string `json:"content"`
6 | Name string `json:"name"`
7 | }
8 | type CompletionRequest struct {
9 | Model string `json:"model"`
10 | Messages []Message `json:"messages"`
11 | Stream bool `json:"stream"`
12 | }
13 | type CompletionResponse struct {
14 | ID string `json:"id"`
15 | Object string `json:"object"`
16 | Created int `json:"created"`
17 | Choices []Choice `json:"choices"`
18 | Usage Usage `json:"usage"`
19 | }
20 | type Usage struct {
21 | PromptTokens int `json:"prompt_tokens"`
22 | CompletionTokens int `json:"completion_tokens"`
23 | TotalTokens int `json:"total_tokens"`
24 | }
25 | type Choice struct {
26 | Index int `json:"index"`
27 | Message Message `json:"message"`
28 | FinishReason string `json:"finish_reason"`
29 | }
30 | type CompletionSSEResponse struct {
31 | Choices []SSEChoice `json:"choices"`
32 | Created int64 `json:"created"`
33 | Id string `json:"id"`
34 | Model string `json:"model"`
35 | Object string `json:"object"`
36 | }
37 | type SSEChoice struct {
38 | Delta map[string]string `json:"delta"`
39 | FinishReason *string `json:"finish_reason"`
40 | Index int `json:"index"`
41 | }
42 | type Delta struct {
43 | Role string `json:"role"`
44 | Content string `json:"content"`
45 | }
46 |
--------------------------------------------------------------------------------
/router/router.go:
--------------------------------------------------------------------------------
1 | package router
2 |
3 | import (
4 | "encoding/json"
5 | "io"
6 | "net/http"
7 | "time"
8 |
9 | "github.com/gin-gonic/gin"
10 | "github.com/juzeon/poe-openai-proxy/conf"
11 | "github.com/juzeon/poe-openai-proxy/poe"
12 | "github.com/juzeon/poe-openai-proxy/util"
13 | )
14 |
15 | func Setup(engine *gin.Engine) {
16 | getModels := func(c *gin.Context) {
17 | SetCORS(c)
18 | c.JSON(http.StatusOK, conf.Models)
19 | }
20 |
21 | engine.GET("/models", getModels)
22 | engine.GET("/v1/models", getModels)
23 |
24 | postCompletions := func(c *gin.Context) {
25 | SetCORS(c)
26 | var req poe.CompletionRequest
27 | if err := c.ShouldBindJSON(&req); err != nil {
28 | c.JSON(400, "bad request")
29 | return
30 | }
31 | for _, msg := range req.Messages {
32 | if msg.Role != "system" && msg.Role != "user" && msg.Role != "assistant" {
33 | c.JSON(400, "role of message validation failed: "+msg.Role)
34 | return
35 | }
36 | }
37 | client, err := poe.GetClient()
38 | if err != nil {
39 | c.JSON(500, err)
40 | return
41 | }
42 | defer client.Release()
43 | if req.Stream {
44 | util.Logger.Info("stream using client: " + client.Token)
45 | Stream(c, req, client)
46 | } else {
47 | util.Logger.Info("ask using client: " + client.Token)
48 | Ask(c, req, client)
49 | }
50 | }
51 |
52 | engine.POST("/chat/completions", postCompletions)
53 | engine.POST("/v1/chat/completions", postCompletions)
54 |
55 | // OPTIONS /v1/chat/completions
56 |
57 | optionsCompletions := func(c *gin.Context) {
58 | SetCORS(c)
59 | c.JSON(200, "")
60 | }
61 |
62 | engine.OPTIONS("/chat/completions", optionsCompletions)
63 | engine.OPTIONS("/v1/chat/completions", optionsCompletions)
64 | }
65 | func Stream(c *gin.Context, req poe.CompletionRequest, client *poe.Client) {
66 | c.Writer.Header().Set("Content-Type", "text/event-stream")
67 | c.Writer.Header().Set("Cache-Control", "no-cache")
68 | c.Writer.Header().Set("Connection", "keep-alive")
69 | w := c.Writer
70 | flusher, _ := w.(http.Flusher)
71 | timeout := time.Duration(conf.Conf.Timeout) * time.Second
72 | ticker := time.NewTimer(timeout)
73 | defer ticker.Stop()
74 | channel, err := client.Stream(req.Messages, req.Model)
75 | if err != nil {
76 | c.JSON(500, err.Error())
77 | return
78 | }
79 |
80 | conversationID := "chatcmpl-" + util.RandStringRunes(29)
81 |
82 | createSSEResponse := func(content string, haveRole bool) {
83 | done := content == "[DONE]"
84 | var finishReason *string
85 | delta := map[string]string{}
86 | if done {
87 | _str := "stop"
88 | finishReason = &_str
89 | } else if haveRole {
90 | delta["role"] = "assistant"
91 | } else {
92 | delta["content"] = content
93 | }
94 | data := poe.CompletionSSEResponse{
95 | Choices: []poe.SSEChoice{{
96 | Index: 0,
97 | Delta: delta,
98 | FinishReason: finishReason,
99 | }},
100 | Created: time.Now().Unix(),
101 | Id: conversationID,
102 | Model: req.Model,
103 | Object: "chat.completion.chunk",
104 | }
105 | dataV, _ := json.Marshal(&data)
106 | _, err := io.WriteString(w, "data: "+string(dataV)+"\n\n")
107 | if err != nil {
108 | util.Logger.Error(err)
109 | }
110 | flusher.Flush()
111 | if done {
112 | _, err := io.WriteString(w, "data: [DONE]\n\n")
113 | if err != nil {
114 | util.Logger.Error(err)
115 | }
116 | flusher.Flush()
117 | }
118 | }
119 | createSSEResponse("", true)
120 | forLoop:
121 | for {
122 | select {
123 | case <-ticker.C:
124 | c.SSEvent("error", "timeout")
125 | break forLoop
126 | case d := <-channel:
127 | ticker.Reset(timeout)
128 | createSSEResponse(d, false)
129 | if d == "[DONE]" {
130 | break forLoop
131 | }
132 | }
133 | }
134 | }
135 | func Ask(c *gin.Context, req poe.CompletionRequest, client *poe.Client) {
136 | message, err := client.Ask(req.Messages, req.Model)
137 | if err != nil {
138 | c.JSON(500, err.Error())
139 | return
140 | }
141 | c.JSON(200, poe.CompletionResponse{
142 | ID: "chatcmpl-" + util.RandStringRunes(29),
143 | Object: "chat.completion",
144 | Created: int(time.Now().Unix()),
145 | Choices: []poe.Choice{{
146 | Index: 0,
147 | Message: *message,
148 | FinishReason: "stop",
149 | }},
150 | Usage: poe.Usage{
151 | PromptTokens: 0,
152 | CompletionTokens: 0,
153 | TotalTokens: 0,
154 | },
155 | })
156 | }
157 |
158 | func SetCORS(c *gin.Context) {
159 | c.Writer.Header().Set("Access-Control-Allow-Origin", "*")
160 | c.Writer.Header().Set("Access-Control-Allow-Headers", "*")
161 | c.Writer.Header().Set("Access-Control-Allow-Methods", "*")
162 | c.Writer.Header().Set("Access-Control-Max-Age", "86400")
163 | c.Writer.Header().Set("Content-Type", "application/json")
164 | }
165 |
--------------------------------------------------------------------------------
/util/util.go:
--------------------------------------------------------------------------------
1 | package util
2 |
3 | import (
4 | "github.com/op/go-logging"
5 | "math/rand"
6 | "os"
7 | "time"
8 | )
9 |
10 | var Logger = logging.MustGetLogger("common")
11 |
12 | func init() {
13 | rand.Seed(time.Now().UnixNano())
14 | backend := logging.NewLogBackend(os.Stdout, "", 0)
15 | logBackend := logging.NewBackendFormatter(backend, logging.MustStringFormatter("%{level}: %{message}"))
16 | logging.SetBackend(logBackend)
17 | }
18 |
19 | var letterRunes = []rune("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ")
20 |
21 | func RandStringRunes(n int) string {
22 | b := make([]rune, n)
23 | for i := range b {
24 | b[i] = letterRunes[rand.Intn(len(letterRunes))]
25 | }
26 | return string(b)
27 | }
28 |
--------------------------------------------------------------------------------