diff --git a/spaces/101-5/gpt4free/g4f/.v1/unfinished/t3nsor/README.md b/spaces/101-5/gpt4free/g4f/.v1/unfinished/t3nsor/README.md deleted file mode 100644 index 2790bf6e5fb5ab314395757168c26c956e0395fe..0000000000000000000000000000000000000000 --- a/spaces/101-5/gpt4free/g4f/.v1/unfinished/t3nsor/README.md +++ /dev/null @@ -1,44 +0,0 @@ -### note: currently patched - -### Example: `t3nsor` (use like openai pypi package) - -```python -# Import t3nsor -import t3nsor - -# t3nsor.Completion.create -# t3nsor.StreamCompletion.create - -[...] - -``` - -#### Example Chatbot -```python -messages = [] - -while True: - user = input('you: ') - - t3nsor_cmpl = t3nsor.Completion.create( - prompt = user, - messages = messages - ) - - print('gpt:', t3nsor_cmpl.completion.choices[0].text) - - messages.extend([ - {'role': 'user', 'content': user }, - {'role': 'assistant', 'content': t3nsor_cmpl.completion.choices[0].text} - ]) -``` - -#### Streaming Response: - -```python -for response in t3nsor.StreamCompletion.create( - prompt = 'write python code to reverse a string', - messages = []): - - print(response.completion.choices[0].text) -``` diff --git a/spaces/101-5/gpt4free/g4f/Provider/Providers/EasyChat.py b/spaces/101-5/gpt4free/g4f/Provider/Providers/EasyChat.py deleted file mode 100644 index 9f4aa7b2d047901f9bbb5278bb2ddde3c9f8246f..0000000000000000000000000000000000000000 --- a/spaces/101-5/gpt4free/g4f/Provider/Providers/EasyChat.py +++ /dev/null @@ -1,43 +0,0 @@ -import os, requests -from ...typing import sha256, Dict, get_type_hints -import json - -url = "https://free.easychat.work/api/openai/v1/chat/completions" -model = ['gpt-3.5-turbo'] -supports_stream = False -needs_auth = False - -def _create_completion(model: str, messages: list, stream: bool, **kwargs): - ''' limited to 240 messages/hour''' - base = '' - for message in messages: - base += '%s: %s\n' % (message['role'], message['content']) - base += 'assistant:' - - headers = { - "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36", - } - - data = { - "messages": [ - {"role": "system", "content": "You are ChatGPT, a large language model trained by OpenAI."}, - {"role": "user", "content": base} - ], - "stream": False, - "model": "gpt-3.5-turbo", - "temperature": 0.5, - "presence_penalty": 0, - "frequency_penalty": 0, - "top_p": 1 - } - - response = requests.post(url, headers=headers, json=data) - if response.status_code == 200: - response = response.json() - yield response['choices'][0]['message']['content'] - else: - print(f"Error Occurred::{response.status_code}") - return None - -params = f'g4f.Providers.{os.path.basename(__file__)[:-3]} supports: ' + \ - '(%s)' % ', '.join([f"{name}: {get_type_hints(_create_completion)[name].__name__}" for name in _create_completion.__code__.co_varnames[:_create_completion.__code__.co_argcount]]) \ No newline at end of file diff --git a/spaces/101-5/gpt4free/g4f/Provider/Providers/Vercel.py b/spaces/101-5/gpt4free/g4f/Provider/Providers/Vercel.py deleted file mode 100644 index e5df9cf017e4c1a265f5c9d5e48eb5c10a56e60a..0000000000000000000000000000000000000000 --- a/spaces/101-5/gpt4free/g4f/Provider/Providers/Vercel.py +++ /dev/null @@ -1,162 +0,0 @@ -import os -import json -import base64 -import execjs -import queue -import threading - -from curl_cffi import requests -from ...typing import sha256, Dict, get_type_hints - -url = 'https://play.vercel.ai' -supports_stream = True -needs_auth = False - -models = { - 'claude-instant-v1': 'anthropic:claude-instant-v1', - 'claude-v1': 'anthropic:claude-v1', - 'alpaca-7b': 'replicate:replicate/alpaca-7b', - 'stablelm-tuned-alpha-7b': 'replicate:stability-ai/stablelm-tuned-alpha-7b', - 'bloom': 'huggingface:bigscience/bloom', - 'bloomz': 'huggingface:bigscience/bloomz', - 'flan-t5-xxl': 'huggingface:google/flan-t5-xxl', - 'flan-ul2': 'huggingface:google/flan-ul2', - 'gpt-neox-20b': 'huggingface:EleutherAI/gpt-neox-20b', - 'oasst-sft-4-pythia-12b-epoch-3.5': 'huggingface:OpenAssistant/oasst-sft-4-pythia-12b-epoch-3.5', - 'santacoder': 'huggingface:bigcode/santacoder', - 'command-medium-nightly': 'cohere:command-medium-nightly', - 'command-xlarge-nightly': 'cohere:command-xlarge-nightly', - 'code-cushman-001': 'openai:code-cushman-001', - 'code-davinci-002': 'openai:code-davinci-002', - 'gpt-3.5-turbo': 'openai:gpt-3.5-turbo', - 'text-ada-001': 'openai:text-ada-001', - 'text-babbage-001': 'openai:text-babbage-001', - 'text-curie-001': 'openai:text-curie-001', - 'text-davinci-002': 'openai:text-davinci-002', - 'text-davinci-003': 'openai:text-davinci-003' -} -model = models.keys() - -vercel_models = {'anthropic:claude-instant-v1': {'id': 'anthropic:claude-instant-v1', 'provider': 'anthropic', 'providerHumanName': 'Anthropic', 'makerHumanName': 'Anthropic', 'minBillingTier': 'hobby', 'parameters': {'temperature': {'value': 1, 'range': [0, 1]}, 'maximumLength': {'value': 200, 'range': [50, 1024]}, 'topP': {'value': 1, 'range': [0.1, 1]}, 'topK': {'value': 1, 'range': [1, 500]}, 'presencePenalty': {'value': 1, 'range': [0, 1]}, 'frequencyPenalty': {'value': 1, 'range': [0, 1]}, 'stopSequences': {'value': ['\n\nHuman:'], 'range': []}}, 'name': 'claude-instant-v1'}, 'anthropic:claude-v1': {'id': 'anthropic:claude-v1', 'provider': 'anthropic', 'providerHumanName': 'Anthropic', 'makerHumanName': 'Anthropic', 'minBillingTier': 'hobby', 'parameters': {'temperature': {'value': 1, 'range': [0, 1]}, 'maximumLength': {'value': 200, 'range': [50, 1024]}, 'topP': {'value': 1, 'range': [0.1, 1]}, 'topK': {'value': 1, 'range': [1, 500]}, 'presencePenalty': {'value': 1, 'range': [0, 1]}, 'frequencyPenalty': {'value': 1, 'range': [0, 1]}, 'stopSequences': {'value': ['\n\nHuman:'], 'range': []}}, 'name': 'claude-v1'}, 'replicate:replicate/alpaca-7b': {'id': 'replicate:replicate/alpaca-7b', 'provider': 'replicate', 'providerHumanName': 'Replicate', 'makerHumanName': 'Stanford', 'parameters': {'temperature': {'value': 0.75, 'range': [0.01, 5]}, 'maximumLength': {'value': 200, 'range': [50, 512]}, 'topP': {'value': 0.95, 'range': [0.01, 1]}, 'presencePenalty': {'value': 0, 'range': [0, 1]}, 'frequencyPenalty': {'value': 0, 'range': [0, 1]}, 'repetitionPenalty': {'value': 1.1765, 'range': [0.01, 5]}, 'stopSequences': {'value': [], 'range': []}}, 'version': '2014ee1247354f2e81c0b3650d71ca715bc1e610189855f134c30ecb841fae21', 'name': 'alpaca-7b'}, 'replicate:stability-ai/stablelm-tuned-alpha-7b': {'id': 'replicate:stability-ai/stablelm-tuned-alpha-7b', 'provider': 'replicate', 'makerHumanName': 'StabilityAI', 'providerHumanName': 'Replicate', 'parameters': {'temperature': {'value': 0.75, 'range': [0.01, 5]}, 'maximumLength': {'value': 200, 'range': [50, 512]}, 'topP': {'value': 0.95, 'range': [0.01, 1]}, 'presencePenalty': {'value': 0, 'range': [0, 1]}, 'frequencyPenalty': {'value': 0, 'range': [0, 1]}, 'repetitionPenalty': {'value': 1.1765, 'range': [0.01, 5]}, 'stopSequences': {'value': [], 'range': []}}, 'version': '4a9a32b4fd86c2d047f1d271fa93972683ec6ef1cf82f402bd021f267330b50b', 'name': 'stablelm-tuned-alpha-7b'}, 'huggingface:bigscience/bloom': {'id': 'huggingface:bigscience/bloom', 'provider': 'huggingface', 'providerHumanName': 'HuggingFace', 'makerHumanName': 'BigScience', 'instructions': "Do NOT talk to Bloom as an entity, it's not a chatbot but a webpage/blog/article completion model. For the best results: mimic a few words of a webpage similar to the content you want to generate. Start a sentence as if YOU were writing a blog, webpage, math post, coding article and Bloom will generate a coherent follow-up.", 'parameters': {'temperature': {'value': 0.5, 'range': [0.1, 1]}, 'maximumLength': {'value': 200, 'range': [50, 1024]}, 'topP': {'value': 0.95, 'range': [0.01, 0.99]}, 'topK': {'value': 4, 'range': [1, 500]}, 'repetitionPenalty': {'value': 1.03, 'range': [0.1, 2]}}, 'name': 'bloom'}, 'huggingface:bigscience/bloomz': {'id': 'huggingface:bigscience/bloomz', 'provider': 'huggingface', 'providerHumanName': 'HuggingFace', 'makerHumanName': 'BigScience', 'instructions': 'We recommend using the model to perform tasks expressed in natural language. For example, given the prompt "Translate to English: Je t\'aime.", the model will most likely answer "I love you.".', 'parameters': {'temperature': {'value': 0.5, 'range': [0.1, 1]}, 'maximumLength': {'value': 200, 'range': [50, 1024]}, 'topP': {'value': 0.95, 'range': [0.01, 0.99]}, 'topK': {'value': 4, 'range': [1, 500]}, 'repetitionPenalty': {'value': 1.03, 'range': [0.1, 2]}}, 'name': 'bloomz'}, 'huggingface:google/flan-t5-xxl': {'id': 'huggingface:google/flan-t5-xxl', 'provider': 'huggingface', 'makerHumanName': 'Google', 'providerHumanName': 'HuggingFace', 'name': 'flan-t5-xxl', 'parameters': {'temperature': {'value': 0.5, 'range': [0.1, 1]}, 'maximumLength': {'value': 200, 'range': [50, 1024]}, 'topP': {'value': 0.95, 'range': [0.01, 0.99]}, 'topK': {'value': 4, 'range': [1, 500]}, 'repetitionPenalty': {'value': 1.03, 'range': [0.1, 2]}}}, 'huggingface:google/flan-ul2': {'id': 'huggingface:google/flan-ul2', 'provider': 'huggingface', 'providerHumanName': 'HuggingFace', 'makerHumanName': 'Google', 'parameters': {'temperature': {'value': 0.5, 'range': [0.1, 1]}, 'maximumLength': {'value': 200, 'range': [50, 1024]}, 'topP': {'value': 0.95, 'range': [0.01, 0.99]}, 'topK': {'value': 4, 'range': [1, 500]}, 'repetitionPenalty': {'value': 1.03, 'range': [0.1, 2]}}, 'name': 'flan-ul2'}, 'huggingface:EleutherAI/gpt-neox-20b': {'id': 'huggingface:EleutherAI/gpt-neox-20b', 'provider': 'huggingface', 'providerHumanName': 'HuggingFace', 'makerHumanName': 'EleutherAI', 'parameters': {'temperature': {'value': 0.5, 'range': [0.1, 1]}, 'maximumLength': {'value': 200, 'range': [50, 1024]}, 'topP': {'value': 0.95, 'range': [0.01, 0.99]}, 'topK': {'value': 4, 'range': [1, 500]}, 'repetitionPenalty': {'value': 1.03, 'range': [0.1, 2]}, 'stopSequences': {'value': [], 'range': []}}, 'name': 'gpt-neox-20b'}, 'huggingface:OpenAssistant/oasst-sft-4-pythia-12b-epoch-3.5': {'id': 'huggingface:OpenAssistant/oasst-sft-4-pythia-12b-epoch-3.5', 'provider': 'huggingface', 'providerHumanName': 'HuggingFace', 'makerHumanName': 'OpenAssistant', 'parameters': {'maximumLength': {'value': 200, 'range': [50, 1024]}, 'typicalP': {'value': 0.2, 'range': [0.1, 0.99]}, 'repetitionPenalty': {'value': 1, 'range': [0.1, 2]}}, 'name': 'oasst-sft-4-pythia-12b-epoch-3.5'}, 'huggingface:bigcode/santacoder': { - 'id': 'huggingface:bigcode/santacoder', 'provider': 'huggingface', 'providerHumanName': 'HuggingFace', 'makerHumanName': 'BigCode', 'instructions': 'The model was trained on GitHub code. As such it is not an instruction model and commands like "Write a function that computes the square root." do not work well. You should phrase commands like they occur in source code such as comments (e.g. # the following function computes the sqrt) or write a function signature and docstring and let the model complete the function body.', 'parameters': {'temperature': {'value': 0.5, 'range': [0.1, 1]}, 'maximumLength': {'value': 200, 'range': [50, 1024]}, 'topP': {'value': 0.95, 'range': [0.01, 0.99]}, 'topK': {'value': 4, 'range': [1, 500]}, 'repetitionPenalty': {'value': 1.03, 'range': [0.1, 2]}}, 'name': 'santacoder'}, 'cohere:command-medium-nightly': {'id': 'cohere:command-medium-nightly', 'provider': 'cohere', 'providerHumanName': 'Cohere', 'makerHumanName': 'Cohere', 'name': 'command-medium-nightly', 'parameters': {'temperature': {'value': 0.9, 'range': [0, 2]}, 'maximumLength': {'value': 200, 'range': [50, 1024]}, 'topP': {'value': 1, 'range': [0, 1]}, 'topK': {'value': 0, 'range': [0, 500]}, 'presencePenalty': {'value': 0, 'range': [0, 1]}, 'frequencyPenalty': {'value': 0, 'range': [0, 1]}, 'stopSequences': {'value': [], 'range': []}}}, 'cohere:command-xlarge-nightly': {'id': 'cohere:command-xlarge-nightly', 'provider': 'cohere', 'providerHumanName': 'Cohere', 'makerHumanName': 'Cohere', 'name': 'command-xlarge-nightly', 'parameters': {'temperature': {'value': 0.9, 'range': [0, 2]}, 'maximumLength': {'value': 200, 'range': [50, 1024]}, 'topP': {'value': 1, 'range': [0, 1]}, 'topK': {'value': 0, 'range': [0, 500]}, 'presencePenalty': {'value': 0, 'range': [0, 1]}, 'frequencyPenalty': {'value': 0, 'range': [0, 1]}, 'stopSequences': {'value': [], 'range': []}}}, 'openai:gpt-4': {'id': 'openai:gpt-4', 'provider': 'openai', 'providerHumanName': 'OpenAI', 'makerHumanName': 'OpenAI', 'name': 'gpt-4', 'minBillingTier': 'pro', 'parameters': {'temperature': {'value': 0.7, 'range': [0.1, 1]}, 'maximumLength': {'value': 200, 'range': [50, 1024]}, 'topP': {'value': 1, 'range': [0.1, 1]}, 'presencePenalty': {'value': 0, 'range': [0, 1]}, 'frequencyPenalty': {'value': 0, 'range': [0, 1]}, 'stopSequences': {'value': [], 'range': []}}}, 'openai:code-cushman-001': {'id': 'openai:code-cushman-001', 'provider': 'openai', 'providerHumanName': 'OpenAI', 'makerHumanName': 'OpenAI', 'parameters': {'temperature': {'value': 0.5, 'range': [0.1, 1]}, 'maximumLength': {'value': 200, 'range': [50, 1024]}, 'topP': {'value': 1, 'range': [0.1, 1]}, 'presencePenalty': {'value': 0, 'range': [0, 1]}, 'frequencyPenalty': {'value': 0, 'range': [0, 1]}, 'stopSequences': {'value': [], 'range': []}}, 'name': 'code-cushman-001'}, 'openai:code-davinci-002': {'id': 'openai:code-davinci-002', 'provider': 'openai', 'providerHumanName': 'OpenAI', 'makerHumanName': 'OpenAI', 'parameters': {'temperature': {'value': 0.5, 'range': [0.1, 1]}, 'maximumLength': {'value': 200, 'range': [50, 1024]}, 'topP': {'value': 1, 'range': [0.1, 1]}, 'presencePenalty': {'value': 0, 'range': [0, 1]}, 'frequencyPenalty': {'value': 0, 'range': [0, 1]}, 'stopSequences': {'value': [], 'range': []}}, 'name': 'code-davinci-002'}, 'openai:gpt-3.5-turbo': {'id': 'openai:gpt-3.5-turbo', 'provider': 'openai', 'providerHumanName': 'OpenAI', 'makerHumanName': 'OpenAI', 'parameters': {'temperature': {'value': 0.7, 'range': [0, 1]}, 'maximumLength': {'value': 200, 'range': [50, 1024]}, 'topP': {'value': 1, 'range': [0.1, 1]}, 'topK': {'value': 1, 'range': [1, 500]}, 'presencePenalty': {'value': 1, 'range': [0, 1]}, 'frequencyPenalty': {'value': 1, 'range': [0, 1]}, 'stopSequences': {'value': [], 'range': []}}, 'name': 'gpt-3.5-turbo'}, 'openai:text-ada-001': {'id': 'openai:text-ada-001', 'provider': 'openai', 'providerHumanName': 'OpenAI', 'makerHumanName': 'OpenAI', 'name': 'text-ada-001', 'parameters': {'temperature': {'value': 0.5, 'range': [0.1, 1]}, 'maximumLength': {'value': 200, 'range': [50, 1024]}, 'topP': {'value': 1, 'range': [0.1, 1]}, 'presencePenalty': {'value': 0, 'range': [0, 1]}, 'frequencyPenalty': {'value': 0, 'range': [0, 1]}, 'stopSequences': {'value': [], 'range': []}}}, 'openai:text-babbage-001': {'id': 'openai:text-babbage-001', 'provider': 'openai', 'providerHumanName': 'OpenAI', 'makerHumanName': 'OpenAI', 'name': 'text-babbage-001', 'parameters': {'temperature': {'value': 0.5, 'range': [0.1, 1]}, 'maximumLength': {'value': 200, 'range': [50, 1024]}, 'topP': {'value': 1, 'range': [0.1, 1]}, 'presencePenalty': {'value': 0, 'range': [0, 1]}, 'frequencyPenalty': {'value': 0, 'range': [0, 1]}, 'stopSequences': {'value': [], 'range': []}}}, 'openai:text-curie-001': {'id': 'openai:text-curie-001', 'provider': 'openai', 'providerHumanName': 'OpenAI', 'makerHumanName': 'OpenAI', 'name': 'text-curie-001', 'parameters': {'temperature': {'value': 0.5, 'range': [0.1, 1]}, 'maximumLength': {'value': 200, 'range': [50, 1024]}, 'topP': {'value': 1, 'range': [0.1, 1]}, 'presencePenalty': {'value': 0, 'range': [0, 1]}, 'frequencyPenalty': {'value': 0, 'range': [0, 1]}, 'stopSequences': {'value': [], 'range': []}}}, 'openai:text-davinci-002': {'id': 'openai:text-davinci-002', 'provider': 'openai', 'providerHumanName': 'OpenAI', 'makerHumanName': 'OpenAI', 'name': 'text-davinci-002', 'parameters': {'temperature': {'value': 0.5, 'range': [0.1, 1]}, 'maximumLength': {'value': 200, 'range': [50, 1024]}, 'topP': {'value': 1, 'range': [0.1, 1]}, 'presencePenalty': {'value': 0, 'range': [0, 1]}, 'frequencyPenalty': {'value': 0, 'range': [0, 1]}, 'stopSequences': {'value': [], 'range': []}}}, 'openai:text-davinci-003': {'id': 'openai:text-davinci-003', 'provider': 'openai', 'providerHumanName': 'OpenAI', 'makerHumanName': 'OpenAI', 'name': 'text-davinci-003', 'parameters': {'temperature': {'value': 0.5, 'range': [0.1, 1]}, 'maximumLength': {'value': 200, 'range': [50, 1024]}, 'topP': {'value': 1, 'range': [0.1, 1]}, 'presencePenalty': {'value': 0, 'range': [0, 1]}, 'frequencyPenalty': {'value': 0, 'range': [0, 1]}, 'stopSequences': {'value': [], 'range': []}}}} - - -# based on https://github.com/ading2210/vercel-llm-api // modified -class Client: - def __init__(self): - self.session = requests.Session() - self.headers = { - 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110 Safari/537.36', - 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8', - 'Accept-Encoding': 'gzip, deflate, br', - 'Accept-Language': 'en-US,en;q=0.5', - 'Te': 'trailers', - 'Upgrade-Insecure-Requests': '1' - } - self.session.headers.update(self.headers) - - def get_token(self): - b64 = self.session.get('https://sdk.vercel.ai/openai.jpeg').text - data = json.loads(base64.b64decode(b64)) - - code = 'const globalThis = {data: `sentinel`}; function token() {return (%s)(%s)}' % ( - data['c'], data['a']) - - token_string = json.dumps(separators=(',', ':'), - obj={'r': execjs.compile(code).call('token'), 't': data['t']}) - - return base64.b64encode(token_string.encode()).decode() - - def get_default_params(self, model_id): - return {key: param['value'] for key, param in vercel_models[model_id]['parameters'].items()} - - def generate(self, model_id: str, prompt: str, params: dict = {}): - if not ':' in model_id: - model_id = models[model_id] - - defaults = self.get_default_params(model_id) - - payload = defaults | params | { - 'prompt': prompt, - 'model': model_id, - } - - headers = self.headers | { - 'Accept-Encoding': 'gzip, deflate, br', - 'Custom-Encoding': self.get_token(), - 'Host': 'sdk.vercel.ai', - 'Origin': 'https://sdk.vercel.ai', - 'Referrer': 'https://sdk.vercel.ai', - 'Sec-Fetch-Dest': 'empty', - 'Sec-Fetch-Mode': 'cors', - 'Sec-Fetch-Site': 'same-origin', - } - - chunks_queue = queue.Queue() - error = None - response = None - - def callback(data): - chunks_queue.put(data.decode()) - - def request_thread(): - nonlocal response, error - for _ in range(3): - try: - response = self.session.post('https://sdk.vercel.ai/api/generate', - json=payload, headers=headers, content_callback=callback) - response.raise_for_status() - - except Exception as e: - if _ == 2: - error = e - - else: - continue - - thread = threading.Thread(target=request_thread, daemon=True) - thread.start() - - text = '' - index = 0 - while True: - try: - chunk = chunks_queue.get(block=True, timeout=0.1) - - except queue.Empty: - if error: - raise error - - elif response: - break - - else: - continue - - text += chunk - lines = text.split('\n') - - if len(lines) - 1 > index: - new = lines[index:-1] - for word in new: - yield json.loads(word) - index = len(lines) - 1 - -def _create_completion(model: str, messages: list, stream: bool, **kwargs): - yield 'Vercel is currently not working.' - return - - conversation = 'This is a conversation between a human and a language model, respond to the last message accordingly, referring to the past history of messages if needed.\n' - - for message in messages: - conversation += '%s: %s\n' % (message['role'], message['content']) - - conversation += 'assistant: ' - - completion = Client().generate(model, conversation) - - for token in completion: - yield token - -params = f'g4f.Providers.{os.path.basename(__file__)[:-3]} supports: ' + \ - '(%s)' % ', '.join([f"{name}: {get_type_hints(_create_completion)[name].__name__}" for name in _create_completion.__code__.co_varnames[:_create_completion.__code__.co_argcount]]) \ No newline at end of file diff --git a/spaces/1acneusushi/gradio-2dmoleculeeditor/data/3DMark Test Free The Best Way to Compare Your PCs Performance.md b/spaces/1acneusushi/gradio-2dmoleculeeditor/data/3DMark Test Free The Best Way to Compare Your PCs Performance.md deleted file mode 100644 index 1e2ea39ffba41577b5f21ce6b0b442fc1f9cbfde..0000000000000000000000000000000000000000 --- a/spaces/1acneusushi/gradio-2dmoleculeeditor/data/3DMark Test Free The Best Way to Compare Your PCs Performance.md +++ /dev/null @@ -1,26 +0,0 @@ - -

How to Run a 3DMark Test Free on Your PC

-

If you want to benchmark your PC's performance and compare it with other systems, you might want to try 3DMark, a popular and comprehensive tool for testing graphics and gaming capabilities. But how can you run a 3DMark test free on your PC? Here are some options you can consider.

-

Download the Free Version of 3DMark

-

One of the easiest ways to run a 3DMark test free on your PC is to download the free version of 3DMark from Steam or the official website. The free version includes several tests that cover different scenarios, such as Time Spy for DirectX 12, Fire Strike for DirectX 11, Night Raid for integrated graphics, and more. You can also compare your results online with other users and see how your PC ranks among them.

-

3dmark test free


Download File --->>> https://byltly.com/2uKv5P



-

Use the Free Trial of 3DMark Advanced Edition

-

If you want to access more features and tests that are not available in the free version, you can use the free trial of 3DMark Advanced Edition for 14 days. The Advanced Edition lets you customize your tests, run stress tests, monitor your hardware, and unlock more benchmarks, such as Port Royal for ray tracing, Wild Life for mobile devices, and more. You can also export your results as XML files and use them for further analysis.

-

Get a Free Key for 3DMark Advanced Edition

-

Another way to run a 3DMark test free on your PC is to get a free key for 3DMark Advanced Edition from various sources. For example, you might get a free key when you buy a new graphics card or a gaming laptop from certain brands or retailers. You might also find a free key in some giveaways or promotions that are occasionally held by 3DMark or its partners. Just make sure to check the validity and terms of use of the key before you redeem it.

-

Conclusion

-

Running a 3DMark test free on your PC is not difficult if you know where to look. You can either download the free version of 3DMark, use the free trial of 3DMark Advanced Edition, or get a free key for 3DMark Advanced Edition from various sources. By doing so, you can benchmark your PC's performance and see how it compares with other systems.

-

- -

How to Interpret Your 3DMark Test Results

-

After running a 3DMark test free on your PC, you might wonder what your results mean and how to use them. Here are some tips on how to interpret your 3DMark test results.

-

Check Your Score and Compare It with Others

-

The most obvious thing to look at is your score, which is a numerical value that reflects your PC's performance in the test. The higher the score, the better the performance. You can also compare your score with other users who have similar hardware or run the same test. This can help you see how your PC stacks up against the competition and identify any potential issues or bottlenecks.

-

Look at Your Frame Rate and Stability

-

Another thing to look at is your frame rate, which is the number of frames per second (FPS) that your PC can render in the test. The higher the frame rate, the smoother the gameplay. You can also look at your frame rate stability, which is the percentage of frames that meet or exceed a certain threshold. The higher the stability, the more consistent the performance. You can use these metrics to evaluate your PC's gaming experience and see if it meets your expectations or needs.

-

Analyze Your Hardware Usage and Temperature

-

A third thing to look at is your hardware usage and temperature, which are the percentage of resources that your CPU and GPU are using in the test and their respective temperatures. The higher the usage, the more workload your hardware is handling. The higher the temperature, the more heat your hardware is generating. You can use these metrics to monitor your PC's health and efficiency and see if it needs any optimization or cooling.

-

Conclusion

-

Running a 3DMark test free on your PC can help you benchmark your PC's performance and compare it with other systems. However, you also need to know how to interpret your 3DMark test results and use them for further improvement or analysis. By checking your score, frame rate, stability, hardware usage, and temperature, you can gain more insights into your PC's capabilities and limitations.

ddb901b051
-
-
\ No newline at end of file diff --git a/spaces/1acneusushi/gradio-2dmoleculeeditor/data/Dll Injector For Mac.md b/spaces/1acneusushi/gradio-2dmoleculeeditor/data/Dll Injector For Mac.md deleted file mode 100644 index 728d8bbf56b9ec7cbd4d8bb70296da65044ab613..0000000000000000000000000000000000000000 --- a/spaces/1acneusushi/gradio-2dmoleculeeditor/data/Dll Injector For Mac.md +++ /dev/null @@ -1,154 +0,0 @@ -
-

DLL Injector for Mac: Everything You Need to Know

-

If you are a developer, hacker, or gamer, you may have heard of DLL injection. It is a technique that allows you to modify the behavior of a running program by injecting your own code into it. But what exactly is a DLL injector and how does it work? And more importantly, how can you use it on a Mac system?

-

In this article, we will answer these questions and more. We will explain what a DLL injector is, what are its benefits and risks, and how it works on Windows and Mac systems. We will also review some of the best DLL injectors for Mac and show you how to use them. By the end of this article, you will have a clear understanding of DLL injection and how to apply it on your Mac.

-

Dll Injector For Mac


Download Ziphttps://byltly.com/2uKyhY



-

What is a DLL injector and why would someone use it?

-

A DLL injector is a tool that can inject dynamic-link libraries (DLLs) into processes in order to execute arbitrary code in their address space. A DLL is a file that contains executable functions or resources that can be used by other programs. By injecting a DLL into a process, you can modify its functionality or add new features to it.

-

There are many reasons why someone would use a DLL injector. Some of them are:

- -

As you can see, DLL injection can be used for both legitimate and illegitimate purposes. It depends on the intention and ethics of the user.

-

What are the benefits and risks of DLL injection?

-

DLL injection has both benefits and risks. Some of the benefits are:

- -

Some of the risks are:

- -

Therefore, Therefore, you should use DLL injection with caution and responsibility. You should also respect the rights and privacy of the target program or system and its users. DLL injection can be a powerful and useful technique, but it can also be a dangerous and unethical one.

-

How does DLL injection work on Windows and Mac systems?

-

DLL injection works differently on Windows and Mac systems, since they have different operating systems and architectures. Here is a brief overview of how DLL injection works on each system:

-

-

Windows

-

On Windows, DLL injection is relatively easy and common, since Windows supports loading DLLs dynamically at runtime. There are several methods of DLL injection on Windows, but the most popular one is the following:

-
    -
  1. Find the process ID (PID) of the target process using tools like Task Manager or Process Explorer.
  2. -
  3. Open a handle to the target process using the OpenProcess function with the PROCESS_ALL_ACCESS flag.
  4. -
  5. Allocate memory in the target process using the VirtualAllocEx function with the MEM_COMMIT | MEM_RESERVE flags and the PAGE_EXECUTE_READWRITE protection.
  6. -
  7. Write the path of the DLL to be injected into the allocated memory using the WriteProcessMemory function.
  8. -
  9. Create a remote thread in the target process using the CreateRemoteThread function with the address of the LoadLibrary function as the start address and the address of the allocated memory as the parameter.
  10. -
  11. Wait for the remote thread to finish using the WaitForSingleObject function.
  12. -
  13. Close the handle to the target process using the CloseHandle function.
  14. -
-

This method essentially loads the DLL into the target process by calling the LoadLibrary function from a remote thread. The LoadLibrary function is a Windows API function that loads a DLL into the calling process and returns its base address. By passing the path of the DLL as a parameter, you can load any DLL you want into the target process.

-

Mac

-

On Mac, DLL injection is more difficult and rare, since Mac does not support loading DLLs dynamically at runtime. Mac uses dynamic libraries (dylibs) instead of DLLs, which are similar but not exactly the same. Dylibs are loaded at launch time by a program called dyld, which is responsible for resolving dependencies and linking symbols. There are a few methods of DLL injection on Mac, but one of them is the following:

-
    -
  1. Find the process ID (PID) of the target process using tools like Activity Monitor or ps.
  2. -
  3. Attach to the target process using the ptrace function with the PT_ATTACH request.
  4. -
  5. Suspend the target process using the kill function with the SIGSTOP signal.
  6. -
  7. Allocate memory in the target process using the mach_vm_allocate function with the VM_FLAGS_ANYWHERE flag.
  8. -
  9. Write a shellcode that calls dlopen into the allocated memory using the mach_vm_write function. dlopen is a POSIX function that loads a dynamic library into memory and returns its handle.
  10. -
  11. Write a pointer to the path of the dylib to be injected after the shellcode using mach_vm_write again.
  12. -
  13. Set a breakpoint at an instruction in the target process using mach_vm_protect with VM_PROT_EXECUTE | VM_PROT_READ | VM_PROT_COPY flags and VM_PROT_ALL protection.
  14. -
  15. Resume Resume the target process using the kill function with the SIGCONT signal.
  16. -
  17. Wait for the breakpoint to be hit using the waitpid function.
  18. -
  19. Read the registers of the target process using the ptrace function with the PT_GETREGS request.
  20. -
  21. Modify the instruction pointer register to point to the shellcode using the ptrace function with the PT_SETREGS request.
  22. -
  23. Resume the target process using the ptrace function with the PT_DETACH request.
  24. -
-

This method essentially executes the shellcode in the target process by hijacking its execution flow. The shellcode calls dlopen with the path of the dylib as a parameter, which loads the dylib into memory. By setting a breakpoint at an instruction, you can pause the target process and change its instruction pointer to point to your shellcode.

-

Best DLL injectors for Mac

-

Now that you know how DLL injection works on Mac, you may be wondering what are some of the best DLL injectors for Mac. There are not many DLL injectors for Mac, since it is a more challenging and less common technique than on Windows. However, we have found three DLL injectors for Mac that are worth mentioning. They are:

-

Luject

-

Luject is a static injector of dynamic library for application (android, iphoneos, macOS, windows, linux) . It is a command-line tool that can inject a dylib into an executable file before launching it. It works by modifying the Mach-O header of the executable file and adding a new load command that points to the dylib. It supports both 32-bit and 64-bit architectures and can inject multiple dylibs at once.

-

Some of the features, pros, and cons of Luject are:

- - - -
FeaturesProsCons
- Static injection of dylib into executable file
- Support for multiple architectures and platforms
- Support for multiple dylibs injection
- Easy to use command-line interface
- Fast and reliable injection
- No need to attach to or modify running processes
- Compatible with most executable files
- Free and open-source
- Cannot inject into already running processes
- Cannot unload or remove injected dylibs
- May trigger anti-tampering mechanisms or checksums
-

Pyinjector

-

Pyinjector is a Python tool to inject shared libraries into running processes . It is a script that can inject a dylib into a process using the method described in the previous section. It works by attaching to the process, allocating memory, writing shellcode and dylib path, setting a breakpoint, modifying registers, and resuming execution. It supports both 32-bit and 64-bit architectures and can inject multiple dylibs at once.

-

Some of the features, pros, and cons of Pyinjector are:

- - - -
FeaturesProsCons
- Dynamic injection of dylib into running process
- Support for multiple architectures
- Support for multiple dylibs injection
- Written in Python and easy to modify or extend
- Flexible and versatile injection
- Can inject into any running process
- Can unload or remove injected dylibs
- Free and open-source
- Slow and unstable injection
- May cause crashes or errors in target process or system
- May be detected or blocked by security products or mechanisms
-

SocketHook

-

SocketHook is an injector based on EasyHook (win only) that redirects the traffic to your local server . It is a tool that can inject a dylib into a process that uses network sockets. It works by hooking the socket functions in the target process and redirecting them to your local server. You can then intercept, modify, or spoof the network traffic between the target process and its destination. It supports both 32-bit and 64-bit architectures and can inject multiple dylibs at once.

-

Some of the features, pros, and cons of SocketHook are:

- - - -
FeaturesProsCons
- Dynamic injection of dylib into socket-using process
- Support for multiple architectures
- Support for multiple dylibs injection
- Based on EasyHook framework and easy to use
- Powerful and stealthy injection
- Can manipulate network traffic of target process
- Can bypass encryption or authentication mechanisms
- Free and open-source
- Limited to socket-using processes - Limited to socket-using processes
- May cause network latency or congestion
- May be detected or blocked by firewall or antivirus products
-

How to use DLL injectors for Mac

-

Now that you know some of the best DLL injectors for Mac, you may be wondering how to use them. In this section, we will show you a step-by-step guide for using Luject, Pyinjector, and SocketHook. We will assume that you have already downloaded and installed the tools on your Mac. We will also assume that you have a target process and a dylib that you want to inject.

-

Using Luject

-

To use Luject, follow these steps:

-
    -
  1. Open a terminal and navigate to the directory where Luject is located.
  2. -
  3. Run the following command to inject a dylib into an executable file:
    ./luject -i <dylib_path> -o <output_path> <executable_path>
    For example, if you want to inject test.dylib into test.app and save the output as test_injected.app, run:
    ./luject -i test.dylib -o test_injected.app test.app
  4. -
  5. Run the following command to launch the injected executable file:
    open <output_path>
    For example, if you saved the output as test_injected.app, run:
    open test_injected.app
  6. -
  7. Enjoy the injected program.
  8. -
-

Using Pyinjector

-

To use Pyinjector, follow these steps:

-
    -
  1. Open a terminal and navigate to the directory where Pyinjector is located.
  2. -
  3. Run the following command to inject a dylib into a running process:
    python pyinjector.py -p <pid> -d <dylib_path>
    For example, if you want to inject test.dylib into a process with PID 1234, run:
    python pyinjector.py -p 1234 -d test.dylib
  4. -
  5. Wait for the injection to complete.
  6. -
  7. Enjoy the injected program.
  8. -
-

Using SocketHook

-

To use SocketHook, follow these steps:

-
    -
  1. Open a terminal and navigate to the directory where SocketHook is located.
  2. -
  3. Run the following command to start a local server that listens on port 8080:
    python server.py 8080
  4. -
  5. Run the following command to inject a dylib into a running process that uses network sockets:
    ./sockethook -p <pid> -d <dylib_path>
    For example, if you want to inject test.dylib into a process with PID 1234, run:
    ./sockethook -p 1234 -d test.dylib
  6. -
  7. Wait for the injection to complete.
  8. -
  9. Enjoy the injected program and its network traffic.
  10. -
-

Tips and tricks for successful DLL injection

-

DLL injection can be tricky and risky, especially on Mac systems. Here are some tips and tricks that can help you achieve successful DLL injection:

- -

Common errors and troubleshooting

-

DLL injection can also encounter some errors and problems, especially on Mac systems. Here are some of the common errors and troubleshooting tips that can help you solve them:

- -

Conclusion

-

DLL injection is a technique that allows you to inject dynamic-link libraries into processes in order to execute arbitrary code in their address space. It can be used for both legitimate and illegitimate purposes, depending on the intention and ethics of the user. It has both benefits and risks, and it works differently on Windows and Mac systems.

-

In this article, we have explained what a DLL injector is, what are its benefits and risks, and how it works on Windows and Mac systems. We have also reviewed some of the best DLL injectors for Mac and showed you how to use them. We have also provided some tips and tricks for successful DLL injection and some common errors and troubleshooting tips.

-

We hope that this article has been informative and helpful for you. If you want to learn more about DLL injection or other related topics, you can check out these resources:

- -

FAQs

-

Here are some frequently asked questions about DLL injection:

-

What is the difference between DLL injection and code injection?

-

DLL injection is a type of code injection, which is a general term for any technique that injects code into a process. DLL injection specifically injects dynamic-link libraries into processes, while code injection can inject any type of code, such as shellcode, scripts, or bytecode.

-

How can I detect and prevent DLL injection attacks?

-

DLL injection attacks can be detected and prevented by using various security products or mechanisms, such as antivirus software, firewall software, anti-debugging techniques, code signing techniques, integrity checking techniques, sandboxing techniques, etc. These products or mechanisms can monitor, block, or alert any suspicious or unauthorized DLL injection attempts.

-

What are some legitimate uses of DLL injection?

-

Some legitimate uses of DLL injection are enhancing the performance or functionality of a program, debugging or testing a program, bypassing security or anti-cheat mechanisms for research or educational purposes, etc. However, these uses should be done with permission and consent from the target program or system and its users.

-

What are some alternatives to DLL injection?

-

Some alternatives to DLL injection are static linking, dynamic loading, hooking, patching, inter-process communication, etc. These alternatives can achieve similar results as DLL injection without injecting code into processes. However, they may have their own advantages and disadvantages depending on the situation.

-

Is DLL injection illegal or unethical?Is DLL injection illegal or unethical?

-

DLL injection is not inherently illegal or unethical, but it depends on the intention and ethics of the user and the target program or system and its users. DLL injection can be illegal or unethical if it violates the law, the terms of service, the license agreement, or the rights and privacy of the target program or system and its users. DLL injection can also be illegal or unethical if it causes harm or damage to the target program or system and its users. Therefore, you should use DLL injection with caution and responsibility and respect the law and the ethics.

b2dd77e56b
-
-
\ No newline at end of file diff --git a/spaces/1acneusushi/gradio-2dmoleculeeditor/data/HHD Online Player (Full Hd Raja Ki Aayegi Baaraat Movie) Learn More About the Film and Its Cast.md b/spaces/1acneusushi/gradio-2dmoleculeeditor/data/HHD Online Player (Full Hd Raja Ki Aayegi Baaraat Movie) Learn More About the Film and Its Cast.md deleted file mode 100644 index ee6ea24ad31ee3c4af7489f25208975edfab4713..0000000000000000000000000000000000000000 --- a/spaces/1acneusushi/gradio-2dmoleculeeditor/data/HHD Online Player (Full Hd Raja Ki Aayegi Baaraat Movie) Learn More About the Film and Its Cast.md +++ /dev/null @@ -1,132 +0,0 @@ -
-
- Benefits: List the advantages of using HHD Online Player for watching movies online
- Features: Highlight the main features of HHD Online Player such as quality, speed, security, and compatibility | | H2: How to watch Raja Ki Aayegi Baaraat movie online with HHD Online Player | - Step 1: Download and install HHD Online Player on your device
- Step 2: Search for Raja Ki Aayegi Baaraat movie on HHD Online Player
- Step 3: Select the desired quality and language options
- Step 4: Enjoy watching Raja Ki Aayegi Baaraat movie online with HHD Online Player | | H3: What is Raja Ki Aayegi Baaraat movie about and why you should watch it | - Plot summary: Give a brief overview of the story and the main characters of Raja Ki Aayegi Baaraat movie
- Reviews and ratings: Share some positive feedback and ratings from critics and audiences for Raja Ki Aayegi Baaraat movie
- Trivia and facts: Share some interesting facts and trivia about Raja Ki Aayegi Baaraat movie such as awards, box office, and behind-the-scenes | | H4: Conclusion and FAQs | - Conclusion: Summarize the main points of the article and encourage the readers to watch Raja Ki Aayegi Baaraat movie online with HHD Online Player
- FAQs: Answer some common questions that the readers might have about HHD Online Player or Raja Ki Aayegi Baaraat movie | **Table 2: Article with HTML formatting**

What is HHD Online Player and why you should use it

-

If you are a movie lover who likes to watch movies online, you might have heard of HHD Online Player. But what is it exactly and why should you use it? In this article, we will tell you everything you need to know about HHD Online Player and how you can watch Raja Ki Aayegi Baaraat movie online with it.

-

HHD Online Player (Full Hd Raja Ki Aayegi Baaraat Movie)


Download >>> https://byltly.com/2uKwdd



-

HHD Online Player is a free online video player that lets you stream and download movies in high definition quality. It is compatible with all devices such as laptops, smartphones, tablets, and smart TVs. You can watch movies in various languages and subtitles with HHD Online Player. You can also enjoy fast loading speed, secure connection, and ad-free viewing with HHD Online Player.

-

Some of the benefits of using HHD Online Player are:

- -

Some of the features of HHD Online Player are:

- -

How to watch Raja Ki Aayegi Baaraat movie online with HHD Online Player

-

Now that you know what HHD Online Player is and why you should use it, let's see how you can watch Raja Ki Aayegi Baaraat movie online with it. Raja Ki Aayegi Baaraat is a 1996 Hindi drama film starring Rani Mukerji, Shadaab Khan, Gulshan Grover, Divya Dutta, and others. It is directed by Ashok Gaikwad and produced by Salim Akhtar. The movie tells the story of a young girl who is raped by a rich boy and forced to marry him by the court. She then decides to take revenge on him and his family.

-

Raja Ki Ayegi Baraat streaming: where to watch online?
-Raja Ki Ayegi Baraat Superhit Full Bhojpuri Movie Khesari Lal Yadav, Kajal Raghwani
-Raja Ki Ayegi Baraat 1997 IMDb
-Raja Ki Ayegi Baraat Zee5 VI movies and tv
-Raja Ki Ayegi Baraat rape revenge drama
-Raja Ki Ayegi Baraat Rani Mukerji debut film
-Raja Ki Ayegi Baraat Hindi movie with English subtitles
-Raja Ki Ayegi Baraat full movie download HD 720p
-Raja Ki Ayegi Baraat songs mp3 free download
-Raja Ki Ayegi Baraat cast and crew
-Raja Ki Ayegi Baraat box office collection
-Raja Ki Ayegi Baraat movie review and rating
-Raja Ki Ayegi Baraat trailer video
-Raja Ki Ayegi Baraat watch online free Dailymotion
-Raja Ki Ayegi Baraat Mala and Raj love story
-Raja Ki Ayegi Baraat remake of Tamil film Naan Sigappu Manithan
-Raja Ki Ayegi Baraat best scenes and dialogues
-Raja Ki Ayegi Baraat awards and nominations
-Raja Ki Ayegi Baraat behind the scenes and trivia
-Raja Ki Ayegi Baraat movie poster and wallpapers
-Raja Ki Aayegi Baaraat Full Hd Movie Online Free
-Raja Ki Aayegi Baaraat Full Hd Movie Download Filmywap
-Raja Ki Aayegi Baaraat Full Hd Movie Watch on Youtube
-Raja Ki Aayegi Baaraat Full Hd Movie with Bhojpuri Dubbing
-Raja Ki Aayegi Baaraat Full Hd Movie with Urdu Subtitles
-Raja Ki Aayegi Baaraat Full Hd Movie Songs Video
-Raja Ki Aayegi Baaraat Full Hd Movie Controversy and Criticism
-Raja Ki Aayegi Baaraat Full Hd Movie Inspired by True Story
-Raja Ki Aayegi Baaraat Full Hd Movie Comparison with Original Tamil Version
-Raja Ki Aayegi Baaraat Full Hd Movie Fan Reactions and Comments
-HHD Online Player for Bollywood Movies
-HHD Online Player for Bhojpuri Movies
-HHD Online Player for Streaming HD Quality Videos
-HHD Online Player for Downloading Movies Offline
-HHD Online Player for Watching Movies with Subtitles
-HHD Online Player for Android and iOS Devices
-HHD Online Player for PC and Laptop
-HHD Online Player for Smart TV and Firestick
-HHD Online Player Features and Benefits
-HHD Online Player Reviews and Ratings
-How to Watch Raja Ki Aayegi Baaraat Movie on HHD Online Player?
-How to Download Raja Ki Aayegi Baaraat Movie from HHD Online Player?
-How to Install HHD Online Player on Your Device?
-How to Use HHD Online Player for Streaming Movies?
-How to Fix HHD Online Player Errors and Issues?
-How to Update HHD Online Player to Latest Version?
-How to Contact HHD Online Player Customer Support?
-How to Uninstall HHD Online Player from Your Device?
-How to Get HHD Online Player Premium Subscription?
-How to Share HHD Online Player with Your Friends?

-

To watch Raja Ki Aayegi Baaraat movie online with HHD Online Player, follow these simple steps:

-
    -
  1. Download and install HHD Online Player on your device. You can find the download link at . It is free and safe to download.
  2. -
  3. Search for Raja Ki Aayegi Baaraat movie on HHD Online Player. You can use the search bar or browse through the categories.
  4. -
  5. Select the desired quality and language options. You can choose from HD, SD, or CAM quality and Hindi or English language.
  6. -
  7. Enjoy watching Raja Ki Aayegi Baaraat movie online with HHD Online Player. You can pause, resume, rewind, or fast-forward the movie as you like.
  8. -
-

What is Raja Ki Aayegi Baaraat movie about and why you should watch it

-

Raja Ki Aayegi Baaraat is a movie that deals with the issue of rape and justice in India. It is a powerful and emotional drama that showcases the courage and resilience of a woman who fights against all odds. It is also a movie that marks the debut of Rani Mukerji, who went on to become one of the most popular actresses in Bollywood.

-

Here are some reasons why you should watch Raja Ki Aayegi Baaraat movie:

- -

Here are some reviews and ratings for Raja Ki Aayegi Baaraat movie:

- - - - - - - - - - - - - - - - - - - - - - -
SourceRatingReview
IMDb6.8/10"A very good film with a strong message."
Rediff3/5"Rani Mukerji makes an impressive debut in this hard-hitting drama."
Planet Bollywood7/10"A well-made film that tackles a sensitive issue with dignity."
-

Here are some trivia and facts about Raja Ki Aayegi Baaraat movie:

-