Skip to content

Commit

Permalink
Update url_class.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ali77sina authored Aug 6, 2024
1 parent 550b3b6 commit 88d7e6f
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion simplifine_alpha/url_class.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,25 @@
'''
Simplfine is an easy-to-use, open-source library for fine-tuning LLMs models quickly on your own hardware or cloud.
Copyright (C) 2024 Simplifine Corp.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
'''

from dataclasses import dataclass

@dataclass
class url_config:
url: str = "http://34.196.116.1:5000" # The URL of the server, default is the L4 server
url_a100 = "http://18.189.220.250:5000" # The URL of the A100 server
url_l4 = "http://34.196.116.1:5000" # The URL of the L4 server
url_l4 = "http://34.196.116.1:5000" # The URL of the L4 server

0 comments on commit 88d7e6f

Please sign in to comment.