title
stringlengths
2
169
diff
stringlengths
235
19.5k
body
stringlengths
0
30.5k
url
stringlengths
48
84
created_at
stringlengths
20
20
closed_at
stringlengths
20
20
merged_at
stringlengths
20
20
updated_at
stringlengths
20
20
diff_len
float64
101
3.99k
repo_name
stringclasses
83 values
__index_level_0__
int64
15
52.7k
Highly experimental Amazon Linux bootstrapping
diff --git a/bootstrap/_rpm_common.sh b/bootstrap/_rpm_common.sh index 26b91b8c422..9f670da6e87 100755 --- a/bootstrap/_rpm_common.sh +++ b/bootstrap/_rpm_common.sh @@ -16,10 +16,12 @@ else fi # "git-core" seems to be an alias for "git" in CentOS 7 (yum search fails) +# Amazon Linux 2015.03 needs python27-virtualen...
(Not to be merged until after **1.0 for launch** is done, and after testing for impact on other RedHat based platforms). Closes: #1458
https://api.github.com/repos/certbot/certbot/pulls/1465
2015-11-11T19:27:00Z
2015-11-15T03:57:44Z
2015-11-15T03:57:44Z
2016-05-06T19:21:54Z
301
certbot/certbot
1,325
Move more stuff into connection util
diff --git a/lib/streamlit/connections/snowpark_connection.py b/lib/streamlit/connections/snowpark_connection.py index 1fb8010e90c3..3e90a74a6ed1 100644 --- a/lib/streamlit/connections/snowpark_connection.py +++ b/lib/streamlit/connections/snowpark_connection.py @@ -18,17 +18,20 @@ # way to configure this at a per-lin...
Note: This work is being done for `feature/st.connection_GA` but is being merged straight into `develop` to keep the final diff size down. As we work to replace `SnowparkConnection` with a more general `SnowflakeConnection`, some of the helper functions that live in `SnowparkConnection` are being reused, so we sho...
https://api.github.com/repos/streamlit/streamlit/pulls/7512
2023-10-06T00:39:36Z
2023-10-06T22:23:12Z
2023-10-06T22:23:12Z
2023-10-06T22:23:14Z
2,925
streamlit/streamlit
22,389
[MGR] TransformedTargetRegressor passes fit_params to regressor
diff --git a/doc/whats_new/v0.22.rst b/doc/whats_new/v0.22.rst index ce3174218679f..2de229e72b656 100644 --- a/doc/whats_new/v0.22.rst +++ b/doc/whats_new/v0.22.rst @@ -75,6 +75,10 @@ Changelog 1.12. :pr:`14510` by :user:`Guillaume Lemaitre <glemaitre>`. +- |Fix| Fixed a bug in :class:`compose.TransformedTarget...
#### Reference Issues/PRs Fixes #13349 #### What does this implement/fix? Explain your changes. Originally TransformedTargetRegressor only passed `sample_weight` to the `fit` method of the underlying regressor. However This regressor might have other parameters and could theoretically even be a pipeline. Wit...
https://api.github.com/repos/scikit-learn/scikit-learn/pulls/14890
2019-09-05T13:19:06Z
2019-09-06T10:26:05Z
2019-09-06T10:26:05Z
2019-09-16T11:15:35Z
1,393
scikit-learn/scikit-learn
46,634
Fix ValueError for LSTM(implementation=1, use_bias=False)
diff --git a/keras/layers/recurrent.py b/keras/layers/recurrent.py index ec9fa871c6d..46eb08cd8c5 100644 --- a/keras/layers/recurrent.py +++ b/keras/layers/recurrent.py @@ -1803,10 +1803,15 @@ def call(self, inputs, states, training=None): inputs_f = inputs inputs_c = inputs ...
Fixes `ValueError` for `LSTM(implementation=1, use_bias=False)` where the addition operation fails because `self.bias` is set to `None`. Also added a test in `test_implementation_mode()` that fails before this fix and passes after this fix.
https://api.github.com/repos/keras-team/keras/pulls/8299
2017-10-30T05:27:41Z
2017-10-31T17:44:03Z
2017-10-31T17:44:03Z
2017-11-01T01:42:02Z
514
keras-team/keras
47,871
perf(metrics-extraction): Cache should_use_on_demand decision
diff --git a/src/sentry/options/defaults.py b/src/sentry/options/defaults.py index 9f76414e315eb7..de3877d3c492ad 100644 --- a/src/sentry/options/defaults.py +++ b/src/sentry/options/defaults.py @@ -2021,6 +2021,12 @@ default=False, flags=FLAG_PRIORITIZE_DISK | FLAG_AUTOMATOR_MODIFIABLE, ) +# Use to rollout ...
### Summary Checking whether a query should use on-demand requires us to parse the query and use the event_search_grammar every time. This isn't that costly when doing an api call (in the 10ms to 100ms range) but when doing thousands of checks it adds up to a significant amount of time. This caches the decision of usi...
https://api.github.com/repos/getsentry/sentry/pulls/67709
2024-03-26T17:22:08Z
2024-03-26T18:11:14Z
2024-03-26T18:11:14Z
2024-04-11T00:24:46Z
893
getsentry/sentry
44,737
Update request-response.rst
diff --git a/docs/topics/request-response.rst b/docs/topics/request-response.rst index 675574e287b..9dc54f07bfd 100644 --- a/docs/topics/request-response.rst +++ b/docs/topics/request-response.rst @@ -43,7 +43,7 @@ Request objects :param body: the request body. If a ``unicode`` is passed, then it's encoded to ...
Fix small doc typo (too many backticks)
https://api.github.com/repos/scrapy/scrapy/pulls/391
2013-09-18T14:46:42Z
2013-09-18T14:59:46Z
2013-09-18T14:59:46Z
2014-06-12T16:08:02Z
189
scrapy/scrapy
34,392
ref(indexer): Deprecate DbKey
diff --git a/src/sentry/sentry_metrics/configuration.py b/src/sentry/sentry_metrics/configuration.py index e34f0d0a4e71e..32cfc4585b447 100644 --- a/src/sentry/sentry_metrics/configuration.py +++ b/src/sentry/sentry_metrics/configuration.py @@ -10,14 +10,8 @@ class UseCaseKey(Enum): PERFORMANCE = "performance" ...
There's no reason for DbKey to exist on the main indexer configuration. It's a Postgres specific implementation detail. The mapping between UseCaseKey -> DbKey -> table name is now just UseCaseKey -> table name and this is only in the Postgres backend.
https://api.github.com/repos/getsentry/sentry/pulls/37790
2022-08-12T21:27:37Z
2022-08-12T22:03:08Z
2022-08-12T22:03:08Z
2022-08-28T00:02:20Z
1,075
getsentry/sentry
44,372
Update both main VA and remote VA to use the provided DNS server
diff --git a/certbot-ci/certbot_integration_tests/utils/acme_server.py b/certbot-ci/certbot_integration_tests/utils/acme_server.py index 5559b44a652..aa501a279e4 100755 --- a/certbot-ci/certbot_integration_tests/utils/acme_server.py +++ b/certbot-ci/certbot_integration_tests/utils/acme_server.py @@ -149,10 +149,10 @@ d...
Fixes #8453
https://api.github.com/repos/certbot/certbot/pulls/8467
2020-11-19T20:17:23Z
2020-12-04T01:00:33Z
2020-12-04T01:00:33Z
2020-12-04T01:00:33Z
592
certbot/certbot
1,596
Adjust ReAct system prompt examples to match default `FnSchema`
diff --git a/llama_index/agent/react/prompts.py b/llama_index/agent/react/prompts.py index fc34fdeab8020..717317fddf132 100644 --- a/llama_index/agent/react/prompts.py +++ b/llama_index/agent/react/prompts.py @@ -24,12 +24,12 @@ ``` Thought: I need to use a tool to help me answer the question. Action: tool name (one...
# Description - REACT_CHAT_SYSTEM_HEADER is the default system prompt for `ReActAgent` and it contains some in-context examples for how LLM should respond to specify a desire to take an action - The keyword used in those examples is "text", which doesn't match the default `FnSchema` keyword, namely: "input" Inte...
https://api.github.com/repos/run-llama/llama_index/pulls/9103
2023-11-22T23:00:33Z
2023-11-23T16:46:44Z
2023-11-23T16:46:44Z
2023-11-23T16:46:45Z
280
run-llama/llama_index
6,615
add note to readme about project being completed
diff --git a/README.md b/README.md index b0bb4562d6..054fb65ef2 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,10 @@ <img width="auto" height="50px" src="https://github.com/LAION-AI/Open-Assistant/blob/main/assets/logo_crop.png"/> </h1> +<blockquote> +<p>:memo: <strong>NOTE</strong>: OpenAssistant is completed...
@yk @andreaskoepf small one to just add note about project being completed to the top of readme
https://api.github.com/repos/LAION-AI/Open-Assistant/pulls/3724
2023-11-06T11:23:23Z
2023-11-07T22:40:44Z
2023-11-07T22:40:44Z
2023-11-08T02:25:23Z
230
LAION-AI/Open-Assistant
37,348
[MRG+1] Enable genspider command outside project folder
diff --git a/docs/topics/commands.rst b/docs/topics/commands.rst index 9a40a2c2934..d7999900b82 100644 --- a/docs/topics/commands.rst +++ b/docs/topics/commands.rst @@ -159,6 +159,7 @@ settings). Global commands: * :command:`startproject` +* :command:`genspider` * :command:`settings` * :command:`runspider` * :co...
This PR enables the `genspider` CLI command even when the working dir is not a scrapy project. The rationale behind is that some users (including me) are used to create standalone spiders and run it with the `runspider` command, because it's a quick and convenient way to fire up simple spiders. Having `genspider` avai...
https://api.github.com/repos/scrapy/scrapy/pulls/2052
2016-06-12T22:07:37Z
2016-07-06T21:01:30Z
2016-07-06T21:01:30Z
2016-07-06T21:01:30Z
1,842
scrapy/scrapy
35,042
Docs: Fix Rockset links
diff --git a/docs/extras/integrations/providers/rockset.mdx b/docs/extras/integrations/providers/rockset.mdx index 477306f46df508..4dd5431dc1c431 100644 --- a/docs/extras/integrations/providers/rockset.mdx +++ b/docs/extras/integrations/providers/rockset.mdx @@ -12,7 +12,7 @@ pip install rockset ## Vector Store -S...
Fix broken Rockset links. Right now links at https://python.langchain.com/docs/integrations/providers/rockset are broken. @rlancemartin, @eyurtsev <!-- Thank you for contributing to LangChain! Replace this comment with: - Description: a description of the change, - Issue: the issue # it fixes (if app...
https://api.github.com/repos/langchain-ai/langchain/pulls/8214
2023-07-25T03:56:10Z
2023-07-26T17:38:38Z
2023-07-26T17:38:38Z
2023-07-26T17:38:38Z
242
langchain-ai/langchain
42,991
GM: Chevy Equinox 2019-22
diff --git a/selfdrive/car/gm/interface.py b/selfdrive/car/gm/interface.py index be288904840676..49d56cf096ec9d 100755 --- a/selfdrive/car/gm/interface.py +++ b/selfdrive/car/gm/interface.py @@ -71,7 +71,7 @@ def get_params(candidate, fingerprint=gen_empty_fingerprint(), car_fw=None, expe # These cars have been pu...
Note: Only applies to vehicles with camera-based ACC. The RPO configuration is called "Adaptive Cruise Control - Camera", "KSG without UGN" **Checklist** - [x] added entry to CarInfo in selfdrive/car/*/values.py and ran `selfdrive/car/docs.py` to generate new docs - [ ] test route added to [routes.py](https://gith...
https://api.github.com/repos/commaai/openpilot/pulls/25431
2022-08-13T11:46:48Z
2022-09-16T00:55:02Z
2022-09-16T00:55:02Z
2022-09-16T00:55:45Z
2,424
commaai/openpilot
9,622
Test added for _AppCtxGlobals __repr__ method
diff --git a/tests/test_appctx.py b/tests/test_appctx.py index 678bf510e9..251764cf7c 100644 --- a/tests/test_appctx.py +++ b/tests/test_appctx.py @@ -159,6 +159,8 @@ def test_app_ctx_globals_methods(app, app_ctx): assert flask.g.pop('bar', 'more cake') == 'more cake' # __iter__ assert list(flask.g) == [...
I followed the instructions of how to contribute and added a test that didn't have test coverage.
https://api.github.com/repos/pallets/flask/pulls/2807
2018-05-29T06:02:06Z
2018-05-29T16:42:44Z
2018-05-29T16:42:44Z
2020-11-14T02:42:38Z
139
pallets/flask
19,929
Update readme
diff --git a/PPOCRLabel/README_ch.md b/PPOCRLabel/README_ch.md index 397df67660..b41ae200e0 100644 --- a/PPOCRLabel/README_ch.md +++ b/PPOCRLabel/README_ch.md @@ -145,9 +145,6 @@ PPOCRLabel支持三种保存方式: ``` pip install opencv-contrib-python-headless ``` -### 成为特殊兴趣小组的一员 - -PPOCRSIG(Paddle Paddle OCR Special ...
Update readme
https://api.github.com/repos/PaddlePaddle/PaddleOCR/pulls/1701
2021-01-09T14:35:35Z
2021-01-09T14:36:50Z
2021-01-09T14:36:50Z
2021-01-09T14:36:50Z
163
PaddlePaddle/PaddleOCR
41,923
[3.9] closes bpo-29017: Update the bindings for Qt information with PySide2 (GH-20149)
diff --git a/Doc/library/othergui.rst b/Doc/library/othergui.rst index 4548459f8e261d..48c1f2754111aa 100644 --- a/Doc/library/othergui.rst +++ b/Doc/library/othergui.rst @@ -30,10 +30,11 @@ available for Python: for generating bindings for C++ libraries as Python classes, and is specifically designed for...
Reference to PySide has been removed has it is for Qt 4, which has reached end of life. (cherry picked from commit 4649202ea75d48e1496e99911709824ca2d3170e) Co-authored-by: Samuel Gaist <samuel.gaist@idiap.ch> <!-- issue-number: [bpo-29017](https://bugs.python.org/issue29017) --> https://bugs.python.org/issue29017 <...
https://api.github.com/repos/python/cpython/pulls/20526
2020-05-30T01:57:24Z
2020-05-30T02:04:26Z
2020-05-30T02:04:26Z
2020-05-30T02:04:30Z
411
python/cpython
4,534
Load env variable handling & Project preprompt enhancement
diff --git a/gpt_engineer/main.py b/gpt_engineer/main.py index 123df6a51b..0897f6de33 100644 --- a/gpt_engineer/main.py +++ b/gpt_engineer/main.py @@ -20,6 +20,9 @@ def load_env_if_needed(): if os.getenv("OPENAI_API_KEY") is None: load_dotenv() + if os.getenv("OPENAI_API_KEY") is None: + # if t...
Hey everyone 👋, thanks for the great project. I found some things that I believe can benefit the project. # env file loading I use pyenv and pyenv-virtualenv and I noticed that my pip installed gpt-engineer always tries to load the .env from its site-packages directory and searches up to the root. My project...
https://api.github.com/repos/gpt-engineer-org/gpt-engineer/pulls/740
2023-09-24T09:28:01Z
2023-09-25T06:29:12Z
2023-09-25T06:29:12Z
2023-09-30T12:04:01Z
558
gpt-engineer-org/gpt-engineer
33,101
Resolve LOCALSTACK_HOST to the LocalStack container
diff --git a/localstack/dns/server.py b/localstack/dns/server.py index 035568ff70ab1..8fe4aa77f127e 100644 --- a/localstack/dns/server.py +++ b/localstack/dns/server.py @@ -824,11 +824,16 @@ def start_server(upstream_dns: str, host: str, port: int = config.DNS_PORT): LOG.debug("Starting DNS servers (tcp/udp port...
<!-- Please refer to the contribution guidelines before raising a PR: https://github.com/localstack/localstack/blob/master/CONTRIBUTING.md --> <!-- Why am I raising this PR? Add context such as related issues, PRs, or documentation. --> ## Motivation The user may specify a custom value of `LOCALSTACK_HOST` which is t...
https://api.github.com/repos/localstack/localstack/pulls/9178
2023-09-19T09:14:05Z
2023-10-04T08:46:01Z
2023-10-04T08:46:01Z
2023-10-04T10:45:54Z
2,259
localstack/localstack
29,094
Adds copy image option if browser feature available
diff --git a/web/scripts/app.js b/web/scripts/app.js index d131045d7a..e6c0106174 100644 --- a/web/scripts/app.js +++ b/web/scripts/app.js @@ -269,6 +269,71 @@ export class ComfyApp { * @param {*} node The node to add the menu handler */ #addNodeContextMenuHandler(node) { + function getCopyImageOption(img) { +...
Adds Copy Image menu item if browser supports writing images to clipboard: ![image](https://github.com/comfyanonymous/ComfyUI/assets/125205205/c2293565-0c69-4aba-b22d-ef9b7423f870) Writing images to clipboard is enabled in Chromium based browsers by default, Firefox requires a config setting: https://developer.moz...
https://api.github.com/repos/comfyanonymous/ComfyUI/pulls/2544
2024-01-14T16:03:03Z
2024-01-14T19:53:53Z
2024-01-14T19:53:53Z
2024-01-14T19:53:53Z
1,291
comfyanonymous/ComfyUI
17,899
Adding Glot the plotting library for Golang
diff --git a/README.md b/README.md index ce6257b0..de797f46 100644 --- a/README.md +++ b/README.md @@ -329,7 +329,7 @@ Further resources: * [go-graph](https://github.com/StepLg/go-graph) - Graph library for Go/Golang language. * [SVGo](http://www.svgopen.org/2011/papers/34-SVGo_a_Go_Library_for_SVG_generation/) - The...
Hi, I am Arafat. The lead developer of [Glot](https://medium.com/@Arafat./introducing-glot-the-plotting-library-for-golang-3133399948a1). I think Glot could take a place in Visualisation tools for golang.
https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/443
2017-10-25T20:09:47Z
2017-10-27T01:20:39Z
2017-10-27T01:20:39Z
2017-10-27T01:20:39Z
189
josephmisiti/awesome-machine-learning
51,881
DOC Ensures that VarianceThreshold passes numpydoc validation
diff --git a/maint_tools/test_docstrings.py b/maint_tools/test_docstrings.py index 0e84bfd7638ac..294f2582e5087 100644 --- a/maint_tools/test_docstrings.py +++ b/maint_tools/test_docstrings.py @@ -64,7 +64,6 @@ "TheilSenRegressor", "TransformedTargetRegressor", "TweedieRegressor", - "VarianceThreshold...
<!-- Thanks for contributing a pull request! Please ensure you have taken a look at the contribution guidelines: https://github.com/scikit-learn/scikit-learn/blob/main/CONTRIBUTING.md --> #### Reference Issues/PRs <!-- Example: Fixes #1234. See also #3456. Please use keywords (e.g., Fixes) to create link to th...
https://api.github.com/repos/scikit-learn/scikit-learn/pulls/21034
2021-09-14T01:09:10Z
2021-09-14T08:10:26Z
2021-09-14T08:10:25Z
2021-10-26T05:24:57Z
454
scikit-learn/scikit-learn
46,590
DOC: Try with new token
diff --git a/.travis.yml b/.travis.yml index 0156f17aa32a5..8386dce478eb3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,10 +20,10 @@ env: # pandas-docs/pandas-docs-travis GH # # # create a github personal access token - # cd pandas-docs/pandas-docs-travis - # travis encrypt - # PANDAS_GH_TOKEN=personal_...
Let's see if this works @jreback. I think you have to be in the `pandas` git repo when you `travis-encrypt`, since that's the Travis build that's accessing the env var.
https://api.github.com/repos/pandas-dev/pandas/pulls/16389
2017-05-18T22:08:46Z
2017-05-18T22:39:22Z
2017-05-18T22:39:22Z
2017-05-27T16:40:24Z
426
pandas-dev/pandas
45,578
Bump the python-requirements group in /requirements with 6 updates
diff --git a/requirements/dev.txt b/requirements/dev.txt index 454616e2ae..4ac1cdde5d 100644 --- a/requirements/dev.txt +++ b/requirements/dev.txt @@ -30,7 +30,7 @@ click==8.1.7 # via pip-tools colorama==0.4.6 # via tox -cryptography==41.0.7 +cryptography==42.0.2 # via -r typing.in distlib==0.3.8 ...
Bumps the python-requirements group in /requirements with 6 updates: | Package | From | To | | --- | --- | --- | | [sphinx-issues](https://github.com/sloria/sphinx-issues) | `3.0.1` | `4.0.0` | | [sphinx-tabs](https://github.com/executablebooks/sphinx-tabs) | `3.4.4` | `3.4.5` | | [cryptography](https://github.com/pyc...
https://api.github.com/repos/pallets/flask/pulls/5401
2024-02-01T15:41:58Z
2024-02-03T15:40:28Z
2024-02-03T15:40:28Z
2024-02-18T00:06:24Z
983
pallets/flask
20,039
Prevent flowview from creating duplicated windows
diff --git a/libmproxy/console/flowview.py b/libmproxy/console/flowview.py index 5271db4f6e..4304afb5d1 100644 --- a/libmproxy/console/flowview.py +++ b/libmproxy/console/flowview.py @@ -519,10 +519,10 @@ def keypress(self, size, key): self._w.keypress(size, key) elif key == "a": self...
When accepting intercepted flows with 'a' or 'A' command in flowview, mitmproxy makes new window every time. So, I need to press 'q' button several times to return the flow list.
https://api.github.com/repos/mitmproxy/mitmproxy/pulls/791
2015-10-04T05:25:11Z
2015-10-28T12:10:38Z
2015-10-28T12:10:38Z
2015-10-28T12:10:38Z
192
mitmproxy/mitmproxy
28,094
Updating the link to the newest version of PyMC
diff --git a/README.md b/README.md index 3b63582e8..ce2cfe039 100644 --- a/README.md +++ b/README.md @@ -901,7 +901,7 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by * [NetworkX](https://networkx.github.io/) - A high-productivity software for complex networks. * [Pandas](http://pan...
The development version of PyMC (version 3) has been moved to its own repository called pymc3.
https://api.github.com/repos/vinta/awesome-python/pulls/410
2015-07-01T23:00:47Z
2015-07-02T03:43:57Z
2015-07-02T03:43:57Z
2015-11-12T20:33:24Z
299
vinta/awesome-python
27,283
Allow output folder to be a symbolic link
diff --git a/nodes.py b/nodes.py index 0b8be76592..d952d1c572 100644 --- a/nodes.py +++ b/nodes.py @@ -752,7 +752,7 @@ def map_filename(filename): full_output_folder = os.path.join(self.output_dir, subfolder) - if os.path.commonpath((self.output_dir, os.path.realpath(full_output_folder))) != self.ou...
The `realpath()` expands symbolic links, this PR changes it to `abspath()`, because it preserves the symbolic links, allowing the output folder to be a symbolic link pointing to a folder outside the ComfyUI folder.
https://api.github.com/repos/comfyanonymous/ComfyUI/pulls/238
2023-03-24T00:31:50Z
2023-03-25T21:43:40Z
2023-03-25T21:43:40Z
2023-03-26T05:16:49Z
304
comfyanonymous/ComfyUI
17,702
Merge dev branch
diff --git a/modules/presets.py b/modules/presets.py index 2a4a4dde3e..2686355d8e 100644 --- a/modules/presets.py +++ b/modules/presets.py @@ -120,9 +120,12 @@ def generate_preset_yaml(state): defaults = default_preset() data = {k: state[k] for k in presets_params()} - # Remove entries that are identical...
https://api.github.com/repos/oobabooga/text-generation-webui/pulls/5453
2024-02-06T14:49:54Z
2024-02-06T14:50:21Z
2024-02-06T14:50:21Z
2024-02-06T14:50:21Z
433
oobabooga/text-generation-webui
26,741
Catch occasional protocol errors in regular connect
diff --git a/mitmproxy/proxy/protocol/http.py b/mitmproxy/proxy/protocol/http.py index f3e0f514cd..50d64e1743 100644 --- a/mitmproxy/proxy/protocol/http.py +++ b/mitmproxy/proxy/protocol/http.py @@ -182,6 +182,17 @@ def handle_regular_connect(self, f): try: self.set_server((f.request.host, f.req...
Fixes #1843 and #1847
https://api.github.com/repos/mitmproxy/mitmproxy/pulls/1860
2016-12-15T21:58:14Z
2016-12-15T23:16:34Z
2016-12-15T23:16:34Z
2017-03-19T00:28:29Z
294
mitmproxy/mitmproxy
27,710
remove six and __future__ imports
diff --git a/README.rst b/README.rst index 8b778662f73..4fec59b8648 100644 --- a/README.rst +++ b/README.rst @@ -48,7 +48,7 @@ should know: Supported systems ----------------- -We currently support Linux and OS X running Python 2.7 or 3.5 -- 3.7. +We currently support Linux and OS X running Python 3.5 -- 3.8 Wind...
fixes https://github.com/openai/gym/issues/1823
https://api.github.com/repos/openai/gym/pulls/1840
2020-03-06T22:25:53Z
2020-04-10T22:10:35Z
2020-04-10T22:10:35Z
2020-04-10T22:10:39Z
3,293
openai/gym
5,497
Make refiner switchover based on model timesteps instead of sampling steps
diff --git a/modules/sd_samplers_cfg_denoiser.py b/modules/sd_samplers_cfg_denoiser.py index a73d3b03692..93581c9acc6 100644 --- a/modules/sd_samplers_cfg_denoiser.py +++ b/modules/sd_samplers_cfg_denoiser.py @@ -152,7 +152,7 @@ def forward(self, x, sigma, uncond, cond, cond_scale, s_min_uncond, image_cond): i...
## Description * This makes the default behavior of refiner switchover aligned with model timesteps instead of sampling timesteps. This is easier to use, since setting refiner switchover to 0.8 (for a refiner trained on the last 200 timesteps like SDXL's) will now always switch to the refiner as soon as we're sampl...
https://api.github.com/repos/AUTOMATIC1111/stable-diffusion-webui/pulls/14978
2024-02-20T21:57:51Z
2024-03-02T04:24:44Z
2024-03-02T04:24:44Z
2024-03-02T04:24:45Z
884
AUTOMATIC1111/stable-diffusion-webui
40,351
Fix alphabetical order
diff --git a/README.md b/README.md index 6881181f93..373bcc7b66 100644 --- a/README.md +++ b/README.md @@ -178,7 +178,6 @@ API | Description | Auth | HTTPS | CORS | ### Cryptocurrency API | Description | Auth | HTTPS | CORS | |---|---|---|---|---| -| [coinlayer](https://coinlayer.com) | Real-time Crypto Currency Exc...
https://api.github.com/repos/public-apis/public-apis/pulls/1591
2021-03-19T21:02:18Z
2021-03-19T21:04:14Z
2021-03-19T21:04:14Z
2021-03-19T21:04:17Z
2,562
public-apis/public-apis
35,354
make the rag module optional
diff --git a/metagpt/environment/__init__.py b/metagpt/environment/__init__.py index 692672fa7..28981f2f8 100644 --- a/metagpt/environment/__init__.py +++ b/metagpt/environment/__init__.py @@ -4,10 +4,9 @@ from metagpt.environment.base_env import Environment from metagpt.environment.android_env.android_env import A...
**Features** <!-- Clear and direct description of the submit features. --> <!-- If it's a bug fix, please also paste the issue link. --> - Make the rag module optional. **Feature Docs** <!-- The RFC, tutorial, or use cases about the feature if it's a pretty big update. If not, there is no need to fill. -->...
https://api.github.com/repos/geekan/MetaGPT/pulls/1070
2024-03-22T02:29:15Z
2024-03-22T03:21:29Z
2024-03-22T03:21:29Z
2024-03-30T09:22:31Z
1,021
geekan/MetaGPT
16,741
Fix some typos (found by codespell)
diff --git a/certbot-apache/certbot_apache/_internal/http_01.py b/certbot-apache/certbot_apache/_internal/http_01.py index 872704db87c..12088724372 100644 --- a/certbot-apache/certbot_apache/_internal/http_01.py +++ b/certbot-apache/certbot_apache/_internal/http_01.py @@ -107,7 +107,7 @@ def _mod_config(self): ...
Signed-off-by: Stefan Weil <sw@weilnetz.de>
https://api.github.com/repos/certbot/certbot/pulls/9017
2021-08-31T10:10:33Z
2021-09-02T20:43:14Z
2021-09-02T20:43:13Z
2021-09-02T21:12:56Z
3,079
certbot/certbot
3,024
FIX bagging with metadata routing and estimator implement __len__
diff --git a/sklearn/ensemble/_bagging.py b/sklearn/ensemble/_bagging.py index e0ff0b9509c3b..7f278cb06f2ba 100644 --- a/sklearn/ensemble/_bagging.py +++ b/sklearn/ensemble/_bagging.py @@ -113,8 +113,6 @@ def _parallel_build_estimators( estimators = [] estimators_features = [] - request_or_router = get_r...
I could catch a regression in `imbalanced-learn` when `estimator` in `Bagging*` implement `__len__` (e.g. `RandomForest*`) where `_get_estimator` will trigger calling `__len__` with the current pattern. The problem is that `__len__` relies on fitted attribute while `_get_estimator` is called before `fit`. This fi...
https://api.github.com/repos/scikit-learn/scikit-learn/pulls/28734
2024-03-31T18:54:50Z
2024-04-03T13:53:49Z
2024-04-03T13:53:49Z
2024-04-03T13:54:40Z
1,307
scikit-learn/scikit-learn
46,174
ansible-galaxy - fix traceback error for invalid req file (#81917) - 2.15
diff --git a/changelogs/fragments/81901-galaxy-requirements-format.yml b/changelogs/fragments/81901-galaxy-requirements-format.yml new file mode 100644 index 00000000000000..2e57a95550367a --- /dev/null +++ b/changelogs/fragments/81901-galaxy-requirements-format.yml @@ -0,0 +1,2 @@ +bugfixes: +- ansible-galaxy - Provid...
Provide a better error message when encountering a YAML requirements file that is not a dictionary or list. ##### SUMMARY Backport of https://github.com/ansible/ansible/pull/81917 ##### ISSUE TYPE - Bugfix Pull Request
https://api.github.com/repos/ansible/ansible/pulls/81925
2023-10-05T19:15:19Z
2023-10-26T20:10:23Z
2023-10-26T20:10:23Z
2023-11-23T14:00:11Z
630
ansible/ansible
48,935
add milvus to Awesome ML
diff --git a/README.md b/README.md index 7e4e4e5a..204b3626 100644 --- a/README.md +++ b/README.md @@ -1684,6 +1684,7 @@ be <a name="tools-misc"></a> #### Misc +* [milvus](https://milvus.io) – Milvus is [open source](https://github.com/milvus-io/milvus) vector database for production AI, written in Go and C++, scal...
- add milvus
https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/848
2022-03-31T15:32:37Z
2022-03-31T15:43:46Z
2022-03-31T15:43:45Z
2022-03-31T15:48:29Z
293
josephmisiti/awesome-machine-learning
52,119
Select for Query and Deletion
diff --git a/poetry.lock b/poetry.lock index 8466ddbf0..dfdafd2fd 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.0 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. [[packag...
Make it possible in the UI to: - Select the file to be used during Query chat - Select a file to delete - Delete all docs Update Gradio to latest version (current version had a security issue) Covers: - https://github.com/imartinez/privateGPT/pull/1587 - https://github.com/imartinez/privateGPT/pull/1568 ...
https://api.github.com/repos/zylon-ai/private-gpt/pulls/1612
2024-02-16T16:15:49Z
2024-02-16T16:36:09Z
2024-02-16T16:36:09Z
2024-02-16T16:36:10Z
3,648
zylon-ai/private-gpt
38,646
Minor improvements to issue template
diff --git a/.github/ISSUE_TEMPLATE_tmpl.md b/.github/ISSUE_TEMPLATE_tmpl.md index df79503d3ec..26f61d3b43e 100644 --- a/.github/ISSUE_TEMPLATE_tmpl.md +++ b/.github/ISSUE_TEMPLATE_tmpl.md @@ -1,16 +1,16 @@ ## Please follow the guide below - You will be asked some questions and requested to provide some information...
## Please follow the guide below - You will be asked some questions, please read them **carefully** and answer honestly - Put an `x` into all the boxes [ ] relevant to your *pull request* (like that [x]) - Use *Preview* tab to see how your *pull request* will actually look like --- ### Before submitting a *p...
https://api.github.com/repos/ytdl-org/youtube-dl/pulls/13552
2017-07-03T09:57:58Z
2017-07-23T13:33:18Z
2017-07-23T13:33:18Z
2017-07-23T13:33:18Z
793
ytdl-org/youtube-dl
50,094
Fix:delete corresponding event source mappings on deletion of dynamod…
diff --git a/localstack/services/dynamodb/dynamodb_listener.py b/localstack/services/dynamodb/dynamodb_listener.py index c56ded01a399f..8064e9e7d6042 100644 --- a/localstack/services/dynamodb/dynamodb_listener.py +++ b/localstack/services/dynamodb/dynamodb_listener.py @@ -277,12 +277,13 @@ def return_response(self, met...
Fix:delete corresponding event source mappings on deletion of dynamodb table. #2561
https://api.github.com/repos/localstack/localstack/pulls/2580
2020-06-18T22:17:05Z
2020-06-19T21:29:19Z
2020-06-19T21:29:19Z
2020-06-19T21:29:19Z
697
localstack/localstack
28,475
Update index.json (Catalan translation)
diff --git a/website/public/locales/ca/index.json b/website/public/locales/ca/index.json index deea65d726..c85d485d61 100644 --- a/website/public/locales/ca/index.json +++ b/website/public/locales/ca/index.json @@ -1,15 +1,15 @@ { "blurb": "Creiem que podem crear una revolució.", "blurb1": "De la mateixa manera ...
Minor fixes in the Catalan translation.
https://api.github.com/repos/LAION-AI/Open-Assistant/pulls/1434
2023-02-10T14:40:53Z
2023-02-10T14:55:24Z
2023-02-10T14:55:24Z
2023-02-10T14:55:24Z
654
LAION-AI/Open-Assistant
37,327
UI: fix CameraView crash on deleting.
diff --git a/selfdrive/ui/qt/offroad/driverview.cc b/selfdrive/ui/qt/offroad/driverview.cc index 0ff786fb91d3dd..1377bb3b23ba84 100644 --- a/selfdrive/ui/qt/offroad/driverview.cc +++ b/selfdrive/ui/qt/offroad/driverview.cc @@ -35,6 +35,7 @@ void DriverViewScene::showEvent(QShowEvent* event) { } void DriverViewScene...
The vipc thread should be stopped and deleted before deleting
https://api.github.com/repos/commaai/openpilot/pulls/26390
2022-11-06T10:07:05Z
2022-11-16T03:07:51Z
2022-11-16T03:07:50Z
2022-11-16T04:07:44Z
554
commaai/openpilot
9,248
Add webview docs and examples, Set webview as default
diff --git a/README.md b/README.md index 451ec57de3..c07a1d4b22 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ As per the survey, here is a list of improvements to come - [ ] 🚧 Improve Documentation (in /docs & Guides, Howtos, & Do video tutorials) - [x] Improve the provider status list & updates - [ ] Tu...
https://api.github.com/repos/xtekky/gpt4free/pulls/1742
2024-03-22T11:49:17Z
2024-03-22T12:01:48Z
2024-03-22T12:01:48Z
2024-03-22T12:01:55Z
2,335
xtekky/gpt4free
38,112
Deepspeed script changes to align with transformers>=4.30.0 for LoRA training
diff --git a/docs/training.md b/docs/training.md index df16922a47..628557ad5a 100644 --- a/docs/training.md +++ b/docs/training.md @@ -30,7 +30,7 @@ torchrun --nproc_per_node=4 --master_port=9778 fastchat/train/train_flant5.py \ After training, please use our post-processing [function](https://github.com/lm-sys/FastCh...
## Why are these changes needed? Since QLoRA relies on at least transformers version==4.30.0 and bitsandbytes==0.39.0, we propose some changes to the deepspeed and `train_lora` scripts to fix it. We align deepspeed and trainer with transformers>=4.30.0 by doing the following: 1. we must remove optimizer from the ...
https://api.github.com/repos/lm-sys/FastChat/pulls/1900
2023-07-08T19:26:35Z
2023-07-09T04:41:44Z
2023-07-09T04:41:44Z
2023-07-12T09:56:07Z
1,629
lm-sys/FastChat
41,404
ref(stacktrace-link): Drop usage of mobile_frame and fix tag
diff --git a/src/sentry/api/endpoints/project_stacktrace_link.py b/src/sentry/api/endpoints/project_stacktrace_link.py index 38498079aa754..e9bb0e7d0fd25 100644 --- a/src/sentry/api/endpoints/project_stacktrace_link.py +++ b/src/sentry/api/endpoints/project_stacktrace_link.py @@ -51,20 +51,18 @@ def get_link( retu...
https://api.github.com/repos/getsentry/sentry/pulls/41733
2022-11-24T13:55:28Z
2022-11-24T17:11:46Z
2022-11-24T17:11:46Z
2023-05-17T22:12:52Z
1,335
getsentry/sentry
44,146
Fix printing, take two.
diff --git a/css/chat.css b/css/chat.css index fcf19ee03b..45a518bc56 100644 --- a/css/chat.css +++ b/css/chat.css @@ -111,4 +111,16 @@ div.svelte-362y77>*, div.svelte-362y77>.form>* { display: flex; flex-direction: column-reverse; } + + .message { + break-inside: avoid; + } + ...
It wasn't printing longer chats correctly because a parent still had `overflow: hidden;` set. I also fixed mid-message page breaks as [suggested](https://github.com/oobabooga/text-generation-webui/pull/2793#issuecomment-1600951892), and removed the gap at the top (the tabs were in the way).
https://api.github.com/repos/oobabooga/text-generation-webui/pulls/2810
2023-06-22T05:05:20Z
2023-06-22T19:06:49Z
2023-06-22T19:06:49Z
2023-06-27T23:41:29Z
143
oobabooga/text-generation-webui
26,245
Update README.md
diff --git a/README.md b/README.md index 5014007227..9f9c62ea0b 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ | [**Demo**](https://chat.lmsys.org/) | [**Discord**](https://discord.gg/HSWAKCrnFx) | [**X**](https://x.com/lmsysorg) | FastChat is an open platform for training, serving, and evaluating large lan...
https://api.github.com/repos/lm-sys/FastChat/pulls/2679
2023-11-13T07:31:15Z
2023-11-13T07:31:24Z
2023-11-13T07:31:24Z
2023-11-13T07:31:27Z
311
lm-sys/FastChat
41,566
Add google/gemma-7b-it model to model list
diff --git a/g4f/Provider/HuggingChat.py b/g4f/Provider/HuggingChat.py index 9644880c81..52c5ae31b4 100644 --- a/g4f/Provider/HuggingChat.py +++ b/g4f/Provider/HuggingChat.py @@ -14,6 +14,7 @@ class HuggingChat(AsyncGeneratorProvider, ProviderModelMixin): working = True default_model = "meta-llama/Llama-2-70b...
https://api.github.com/repos/xtekky/gpt4free/pulls/1740
2024-03-22T05:40:02Z
2024-03-22T12:02:24Z
2024-03-22T12:02:24Z
2024-03-22T12:03:50Z
192
xtekky/gpt4free
38,068
Fixed #1618 awkward language during email problems
diff --git a/AUTHORS.md b/AUTHORS.md index 21a6e7773d4..04f5b446f3e 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -237,6 +237,7 @@ Authors * [Stefan Weil](https://github.com/stweil) * [Steve Desmond](https://github.com/stevedesmond-ca) * [sydneyli](https://github.com/sydneyli) +* [taixx046](https://github.com/taixx046...
## Pull Request Checklist - [x] If the change being made is to a [distributed component](https://certbot.eff.org/docs/contributing.html#code-components-and-layout), edit the `master` section of `certbot/CHANGELOG.md` to include a description of the change being made. - [x] Include your name in `AUTHORS.md` if you l...
https://api.github.com/repos/certbot/certbot/pulls/7938
2020-04-23T20:35:14Z
2020-04-28T01:33:09Z
2020-04-28T01:33:08Z
2020-04-28T01:33:09Z
599
certbot/certbot
1,465
Show exception and stack trace on startup errors
diff --git a/mitmproxy/addons/errorcheck.py b/mitmproxy/addons/errorcheck.py index 4dccffac53..9b6eff66a1 100644 --- a/mitmproxy/addons/errorcheck.py +++ b/mitmproxy/addons/errorcheck.py @@ -29,8 +29,8 @@ async def shutdown_if_errored(self): if self.logger.has_errored: plural = "s" if len(self.log...
#### Description It's hard to debug errors raised in addon scripts during startup as only a generic message is output on the console. Using logger.format() to format errors that occurred during startup instead of only displaying the LogRecord.msg improves the output if an exception is present by showing the stack tr...
https://api.github.com/repos/mitmproxy/mitmproxy/pulls/6491
2023-11-18T04:51:52Z
2023-11-18T09:03:50Z
2023-11-18T09:03:50Z
2023-11-18T09:51:07Z
227
mitmproxy/mitmproxy
27,667
fixed minor typo: "on the on the" -> "on the"
diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 05f8944a5..dd5879616 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -13840,7 +13840,7 @@ This implies that we cannot safely refer to local objects in `use()` from the th ##### Note -Make "immortal threads" globals, put them in an enclo...
https://api.github.com/repos/isocpp/CppCoreGuidelines/pulls/1103
2017-12-12T20:09:17Z
2017-12-13T17:52:13Z
2017-12-13T17:52:13Z
2017-12-13T17:52:13Z
164
isocpp/CppCoreGuidelines
15,357
chore(logging): Fix `_handle_regression` log messages
diff --git a/src/sentry/event_manager.py b/src/sentry/event_manager.py index fc7c7cb6336d4a..d5b51fc6d4af52 100644 --- a/src/sentry/event_manager.py +++ b/src/sentry/event_manager.py @@ -1846,7 +1846,7 @@ def _handle_regression(group: Group, event: Event, release: Optional[Release]) - if not group.is_resolved(): ...
This updates some log messages in `_handle_regression` to better reflect the conditions in which they're found. (All four were the same as the first one (which was making my linter mad), so I assume this was just a copying error.)
https://api.github.com/repos/getsentry/sentry/pulls/54914
2023-08-17T00:47:20Z
2023-08-17T17:08:27Z
2023-08-17T17:08:27Z
2023-09-02T00:02:41Z
390
getsentry/sentry
44,541
test_models: fuzz test panda and CarState
diff --git a/Jenkinsfile b/Jenkinsfile index a7f272cd807de4..9868777dfbccc5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -268,7 +268,7 @@ node { 'car tests': { pcStage("car tests") { sh label: "build", script: "selfdrive/manager/build.py" - sh label: "run car tests", script: "cd sel...
Actually finding lots of legitimate mismatches between openpilot/CANParser and panda safety: - CANParser issues: - [x] Honda: `CANParser` maintains values from invalid msgs in `vl_all` when it shouldn't add them in the first place, causing bad brake press values in CS when it gets a valid msg - https://github.com...
https://api.github.com/repos/commaai/openpilot/pulls/30443
2023-11-11T11:30:07Z
2023-12-19T09:18:54Z
2023-12-19T09:18:54Z
2023-12-20T00:33:07Z
2,082
commaai/openpilot
9,468
Finish docs for v3.0.0
diff --git a/CHANGELOG.md b/CHANGELOG.md index d69956cb03..435b5723ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ This project adheres to [Semantic Versioning](https://semver.org/). ## [3.0.0.dev0](https://github.com/httpie/httpie/compare/2.6.0...master) (unreleased) -- Drop support for Python 3.6...
https://api.github.com/repos/httpie/cli/pulls/1269
2022-01-14T19:07:37Z
2022-01-21T17:24:07Z
2022-01-21T17:24:07Z
2022-01-21T17:24:08Z
3,567
httpie/cli
33,863
Add save command to lovelace
diff --git a/homeassistant/components/lovelace/__init__.py b/homeassistant/components/lovelace/__init__.py index 39644bd047b3..e40cb18a2b25 100644 --- a/homeassistant/components/lovelace/__init__.py +++ b/homeassistant/components/lovelace/__init__.py @@ -31,6 +31,7 @@ OLD_WS_TYPE_GET_LOVELACE_UI = 'frontend/lovelace_c...
## Description: Adds save command to save the automatically created config to file. https://github.com/home-assistant/home-assistant-polymer/pull/2091 **Related issue (if applicable):** fixes #<home-assistant issue number goes here> **Pull request in [home-assistant.io](https://github.com/home-assistant/home-...
https://api.github.com/repos/home-assistant/core/pulls/18655
2018-11-23T15:43:05Z
2018-11-23T21:56:58Z
2018-11-23T21:56:58Z
2018-11-24T09:21:48Z
1,119
home-assistant/core
38,924
fix acfun bangumi page
diff --git a/src/you_get/extractors/acfun.py b/src/you_get/extractors/acfun.py index 4b45c5e962..772132fe6c 100644 --- a/src/you_get/extractors/acfun.py +++ b/src/you_get/extractors/acfun.py @@ -105,27 +105,42 @@ def acfun_download_by_vid(vid, title, output_dir='.', merge=True, info_only=Fals pass def a...
url pattern and html layout of acfun's bangumi page is different from other acfun page , which causes problem this pr fixs it ~~~ you-get -i http://www.acfun.cn/bangumi/ab5022161 Site: AcFun.tv Title: 但是不屈不挠 SAGA (acfun) Type: MPEG-4 video (video/mp4) Size: 539.6 MiB (565815129 Bytes) ~...
https://api.github.com/repos/soimort/you-get/pulls/2660
2018-11-22T06:00:11Z
2018-11-22T11:04:13Z
2018-11-22T11:04:13Z
2018-11-22T11:04:13Z
737
soimort/you-get
21,078
Added settings vllm
diff --git a/fastchat/protocol/api_protocol.py b/fastchat/protocol/api_protocol.py index 7dc8fe1c30..2dc99449dc 100644 --- a/fastchat/protocol/api_protocol.py +++ b/fastchat/protocol/api_protocol.py @@ -53,12 +53,15 @@ class APIChatCompletionRequest(BaseModel): messages: Union[str, List[Dict[str, str]]] tempe...
## Why are these changes needed? Configuration currently does not take top_k, presence_penalty etc. in mind. When setting them they are not getting passed trough to vllm. ## Related issue number (if applicable) <!-- For example: "Closes #1234" --> ## Checks - [x] I've run `format.sh` to lint the changes in...
https://api.github.com/repos/lm-sys/FastChat/pulls/2599
2023-10-24T15:10:41Z
2023-11-01T08:26:15Z
2023-11-01T08:26:15Z
2023-11-01T08:26:15Z
1,656
lm-sys/FastChat
41,038
MAINT Clean up deprecations for 1.5: delayed import path
diff --git a/sklearn/utils/fixes.py b/sklearn/utils/fixes.py index 1b34a3fe1ffbc..e33519a3154d8 100644 --- a/sklearn/utils/fixes.py +++ b/sklearn/utils/fixes.py @@ -23,7 +23,6 @@ import sklearn from ..externals._packaging.version import parse as parse_version -from .deprecation import deprecated _IS_PYPY = platf...
removed deprecated import path for the ``delayed`` function.
https://api.github.com/repos/scikit-learn/scikit-learn/pulls/28848
2024-04-16T14:33:09Z
2024-04-16T15:32:39Z
2024-04-16T15:32:39Z
2024-04-16T15:32:39Z
581
scikit-learn/scikit-learn
46,311
renewal: fix key_type not being preserved on <v1.25.0 renewal configs
diff --git a/certbot-ci/certbot_integration_tests/certbot_tests/test_main.py b/certbot-ci/certbot_integration_tests/certbot_tests/test_main.py index 6df79c7f959..8ed1fbf1e66 100644 --- a/certbot-ci/certbot_integration_tests/certbot_tests/test_main.py +++ b/certbot-ci/certbot_integration_tests/certbot_tests/test_main.py...
Fixes #9635. We may wish to backport this to Certbot 2.1.0 in order to have it land in https://packages.debian.org/bookworm/python3-certbot.
https://api.github.com/repos/certbot/certbot/pulls/9636
2023-03-27T21:40:05Z
2023-03-28T15:44:20Z
2023-03-28T15:44:20Z
2023-04-25T23:17:21Z
1,543
certbot/certbot
834
Apply theme to VegaLite Charts
diff --git a/frontend/cypress/snapshots/linux/2x/st_chart_utc_time.spec.js/chartUTCTime-0.snap.png b/frontend/cypress/snapshots/linux/2x/st_chart_utc_time.spec.js/chartUTCTime-0.snap.png index 8fe2b51c7377..9eb7bc187f89 100644 Binary files a/frontend/cypress/snapshots/linux/2x/st_chart_utc_time.spec.js/chartUTCTime-0.s...
https://api.github.com/repos/streamlit/streamlit/pulls/2708
2021-02-03T03:30:06Z
2021-02-03T23:44:22Z
2021-02-03T23:44:22Z
2021-07-24T00:37:03Z
2,030
streamlit/streamlit
21,919
fixbug: rename folder does not work in windows os
diff --git a/metagpt/roles/engineer.py b/metagpt/roles/engineer.py index e05e69cbb..b2a909400 100644 --- a/metagpt/roles/engineer.py +++ b/metagpt/roles/engineer.py @@ -204,7 +204,8 @@ async def _is_pass(self, summary) -> (str, str): async def _think(self) -> Action | None: if not CONFIG.src_workspace: ...
**Features** - fixbug: rename folder does not work in windows os
https://api.github.com/repos/geekan/MetaGPT/pulls/716
2024-01-08T09:39:48Z
2024-01-08T09:59:59Z
2024-01-08T09:59:59Z
2024-01-08T10:05:24Z
478
geekan/MetaGPT
16,769
Fix tests on python 2.6
diff --git a/test_requests.py b/test_requests.py index 7e5e4d8fa5..33fafdf4e7 100755 --- a/test_requests.py +++ b/test_requests.py @@ -17,7 +17,9 @@ from requests.adapters import HTTPAdapter from requests.auth import HTTPDigestAuth, _basic_auth_str from requests.compat import ( - Morsel, cookielib, getproxies, st...
On Python 2.6, there's no `OrderedDict` in the `collections` module.
https://api.github.com/repos/psf/requests/pulls/2743
2015-08-25T01:47:46Z
2015-08-25T07:27:20Z
2015-08-25T07:27:20Z
2021-09-08T06:01:09Z
333
psf/requests
32,252
🌐 Update Japanese translation of `docs/ja/docs/tutorial/query-params.md`
diff --git a/docs/ja/docs/tutorial/query-params.md b/docs/ja/docs/tutorial/query-params.md index 5202009ef8676..957726b9f02f4 100644 --- a/docs/ja/docs/tutorial/query-params.md +++ b/docs/ja/docs/tutorial/query-params.md @@ -73,11 +73,6 @@ http://127.0.0.1:8000/items/?skip=20 !!! check "確認" パスパラメータ `item_id` はパスパ...
Optional is no longer used in the sample code, so the description of it has been removed (the same section has already been removed in the English documentation)
https://api.github.com/repos/tiangolo/fastapi/pulls/10808
2023-12-20T11:16:35Z
2024-03-30T23:22:21Z
2024-03-30T23:22:21Z
2024-03-30T23:22:28Z
287
tiangolo/fastapi
23,216
Set default AWS settings via config file rather than environment variables
diff --git a/Dockerfile b/Dockerfile index af7b6430d254d..b8a18860d1563 100644 --- a/Dockerfile +++ b/Dockerfile @@ -46,12 +46,17 @@ RUN mkdir -p /.npm && \ ln -s `pwd` /tmp/localstack_install_dir # expose default environment (required for aws-cli to work) -ENV AWS_ACCESS_KEY_ID=foobar \ - AWS_SECRET_ACCESS_...
This PR supersedes #277 . Set default AWS settings via config file rather than environment variables.
https://api.github.com/repos/localstack/localstack/pulls/389
2017-10-08T21:42:15Z
2017-10-08T21:50:30Z
2017-10-08T21:50:30Z
2017-10-08T21:50:33Z
449
localstack/localstack
28,584
Allow dictionaries return values as JSON
diff --git a/CHANGES.rst b/CHANGES.rst index 2a6641c65d..b3c092b7fa 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -52,6 +52,10 @@ Unreleased - Add an ``--extra-files`` option to the ``flask run`` CLI command to specify extra files that will trigger the reloader on change. :issue:`2897` +- Allow returning...
This is something I've been experimenting with in Quart and I don't see a downside. I can't find any old issues relating to this (although I've found it hard to search for). This is roughly an issue, but as a pull request (branch) you can take the code and try it out. Obliviously if you consider this a good idea I'll a...
https://api.github.com/repos/pallets/flask/pulls/3111
2019-03-03T17:42:17Z
2019-05-24T17:39:12Z
2019-05-24T17:39:12Z
2020-11-14T02:09:35Z
1,693
pallets/flask
20,830
amd support
diff --git a/args_manager.py b/args_manager.py new file mode 100644 index 000000000..a3a48eda8 --- /dev/null +++ b/args_manager.py @@ -0,0 +1,12 @@ +from comfy.options import enable_args_parsing +enable_args_parsing(False) +import comfy.cli_args as comfy_cli + + +comfy_cli.parser.add_argument("--share", action='store_t...
https://api.github.com/repos/lllyasviel/Fooocus/pulls/607
2023-10-09T22:45:32Z
2023-10-09T22:47:46Z
2023-10-09T22:47:46Z
2023-10-09T22:47:48Z
897
lllyasviel/Fooocus
7,063
update urllib3 to 60ba176f5d
diff --git a/requests/packages/urllib3/connectionpool.py b/requests/packages/urllib3/connectionpool.py index f3e926089f..3d7d166a7a 100644 --- a/requests/packages/urllib3/connectionpool.py +++ b/requests/packages/urllib3/connectionpool.py @@ -110,7 +110,7 @@ def connect(self): if self.assert_fingerprint: ...
https://api.github.com/repos/psf/requests/pulls/1412
2013-06-08T08:24:17Z
2013-06-08T10:13:34Z
2013-06-08T10:13:34Z
2021-09-08T23:11:10Z
1,713
psf/requests
32,509
Complete strict typing to Humidifier entity platform
diff --git a/homeassistant/components/device_automation/toggle_entity.py b/homeassistant/components/device_automation/toggle_entity.py index 2d0254b9a0ad90..5905236e050cd8 100644 --- a/homeassistant/components/device_automation/toggle_entity.py +++ b/homeassistant/components/device_automation/toggle_entity.py @@ -107,7...
<!-- You are amazing! Thanks for contributing to our project! Please, DO NOT DELETE ANY TEXT from this template! (unless instructed). --> ## Proposed change <!-- Describe the big picture of your changes here to communicate to the maintainers why we should accept this pull request. If it fixes a bug or...
https://api.github.com/repos/home-assistant/core/pulls/61021
2021-12-04T22:41:11Z
2022-01-04T17:09:32Z
2022-01-04T17:09:32Z
2022-01-05T18:01:56Z
1,318
home-assistant/core
39,070
Add ConfigEntry template function
diff --git a/homeassistant/helpers/template.py b/homeassistant/helpers/template.py index ea6b764a75a0f0..4c47e300dc7bd2 100644 --- a/homeassistant/helpers/template.py +++ b/homeassistant/helpers/template.py @@ -1062,6 +1062,14 @@ def integration_entities(hass: HomeAssistant, entry_name: str) -> Iterable[str]: ] ...
<!-- You are amazing! Thanks for contributing to our project! Please, DO NOT DELETE ANY TEXT from this template! (unless instructed). --> ## Breaking change <!-- If your PR contains a breaking change for existing users, it is important to tell them what breaks, how to make it work again and why we did th...
https://api.github.com/repos/home-assistant/core/pulls/78030
2022-09-08T09:00:48Z
2022-09-29T10:41:59Z
2022-09-29T10:41:59Z
2022-10-26T10:27:47Z
676
home-assistant/core
39,225
Improve Risco exception logging
diff --git a/homeassistant/components/risco/__init__.py b/homeassistant/components/risco/__init__.py index 7ca18ea77c5e15..d25579343c8a65 100644 --- a/homeassistant/components/risco/__init__.py +++ b/homeassistant/components/risco/__init__.py @@ -101,7 +101,7 @@ async def _async_setup_local_entry(hass: HomeAssistant, e...
<!-- You are amazing! Thanks for contributing to our project! Please, DO NOT DELETE ANY TEXT from this template! (unless instructed). --> ## Proposed change <!-- Describe the big picture of your changes here to communicate to the maintainers why we should accept this pull request. If it fixes a bug or...
https://api.github.com/repos/home-assistant/core/pulls/115232
2024-04-08T19:00:41Z
2024-04-10T21:26:15Z
2024-04-10T21:26:15Z
2024-04-12T09:58:57Z
174
home-assistant/core
38,663
Make our test farm tests instances self-destruct
diff --git a/tests/letstest/auto_targets.yaml b/tests/letstest/auto_targets.yaml index 9d97c6a8331..01d410227d1 100644 --- a/tests/letstest/auto_targets.yaml +++ b/tests/letstest/auto_targets.yaml @@ -31,10 +31,6 @@ targets: virt: hvm user: admin machine_type: a1.medium - # userdata: | - # #cloud...
Fixes https://github.com/certbot/certbot/issues/7567. I used the first approach I described at https://github.com/certbot/certbot/issues/7567#issuecomment-743336813 which was to: 1. Change the instance shutdown behavior so shutting down the instance terminates it. See https://docs.aws.amazon.com/AWSEC2/latest/Use...
https://api.github.com/repos/certbot/certbot/pulls/8536
2020-12-15T00:38:39Z
2020-12-15T11:00:01Z
2020-12-15T11:00:00Z
2020-12-15T11:00:02Z
1,228
certbot/certbot
1,566
Patch GitPython to not use leaky persistent processes
diff --git a/modules/extensions.py b/modules/extensions.py index 624832a00e9..fb7250e6a01 100644 --- a/modules/extensions.py +++ b/modules/extensions.py @@ -3,9 +3,8 @@ import threading import traceback -import git - from modules import shared +from modules.gitpython_hack import Repo from modules.paths_int...
## Description ### a simple description of what you're trying to accomplish On occasion on b957dcfece29c84ac0cfcd5a69475ff8684c531f, the server would fail to start (getting seemingly stuck), and when it did, there were tons of stray `git cat-file` processes left over [by GitPython's "persistent processes" system]...
https://api.github.com/repos/AUTOMATIC1111/stable-diffusion-webui/pulls/10805
2023-05-28T21:50:51Z
2023-05-31T16:05:04Z
2023-05-31T16:05:03Z
2023-06-01T09:48:37Z
989
AUTOMATIC1111/stable-diffusion-webui
39,787
Update docs on working on docs
diff --git a/docs/docsite/Makefile b/docs/docsite/Makefile index 76849d820f1b41..3add5bafaf71c3 100644 --- a/docs/docsite/Makefile +++ b/docs/docsite/Makefile @@ -78,32 +78,32 @@ gettext_generate_rst: collections_meta config cli keywords testing # The following two symlinks are necessary to produce two different docse...
##### SUMMARY <!--- Describe the change below, including rationale and design decisions --> Fix a bug in the `make clean` target that would not cleanup symlinks. Add documentation describing how to setup the configuration before trying to generate docs. This is a new requirement since the documentation was split u...
https://api.github.com/repos/ansible/ansible/pulls/74201
2021-04-08T20:56:02Z
2021-04-21T19:15:28Z
2021-04-21T19:15:28Z
2021-05-19T13:00:04Z
1,659
ansible/ansible
49,557
Dev
diff --git a/fooocus_version.py b/fooocus_version.py index 709af32d5..e1578ebba 100644 --- a/fooocus_version.py +++ b/fooocus_version.py @@ -1 +1 @@ -version = '2.1.848' +version = '2.1.849' diff --git a/modules/patch.py b/modules/patch.py index 6a7111a6f..66b243cb5 100644 --- a/modules/patch.py +++ b/modules/patch.py ...
https://api.github.com/repos/lllyasviel/Fooocus/pulls/1460
2023-12-17T03:52:32Z
2023-12-17T03:54:05Z
2023-12-17T03:54:05Z
2023-12-17T03:54:08Z
2,948
lllyasviel/Fooocus
7,123
[Serve] ServeHandle detects ActorError and drop replicas from target group
diff --git a/python/ray/serve/_private/router.py b/python/ray/serve/_private/router.py index eb358030c1bd2..67d21707ecbdf 100644 --- a/python/ray/serve/_private/router.py +++ b/python/ray/serve/_private/router.py @@ -9,6 +9,7 @@ import ray from ray.actor import ActorHandle +from ray.exceptions import RayActorError,...
<!-- Thank you for your contribution! Please review https://github.com/ray-project/ray/blob/master/CONTRIBUTING.rst before opening a pull request. --> <!-- Please add a reviewer to the assignee section when you create a PR. If you don't have the access to it, we will shortly find a reviewer and assign them to your P...
https://api.github.com/repos/ray-project/ray/pulls/26685
2022-07-18T22:52:00Z
2022-07-29T16:50:17Z
2022-07-29T16:50:17Z
2022-08-03T19:03:16Z
1,384
ray-project/ray
19,409
Okx: fetchLedger unify marginMode
diff --git a/js/okx.js b/js/okx.js index 8d338c0f96cb..e9c39a4680d8 100644 --- a/js/okx.js +++ b/js/okx.js @@ -3118,10 +3118,14 @@ module.exports = class okx extends Exchange { * @method * @name okx#fetchLedger * @description fetch the history of changes, actions done by the user or operat...
Added marginMode to fetchLedger: ### Cross: ``` node examples/js/cli okx fetchLedger undefined undefined undefined '{"marginMode":"cross"}' okx.fetchLedger (, , , [object Object]) 2022-07-08T06:22:36.364Z iteration 0 passed in 377 ms id | timestamp | datetime | account | ...
https://api.github.com/repos/ccxt/ccxt/pulls/14267
2022-07-08T06:31:38Z
2022-08-24T10:38:15Z
2022-08-24T10:38:14Z
2022-08-24T10:38:15Z
547
ccxt/ccxt
13,860
Lat fix for Ray HP search
diff --git a/src/transformers/trainer.py b/src/transformers/trainer.py index 97072e689eaba..350375fe00b7d 100755 --- a/src/transformers/trainer.py +++ b/src/transformers/trainer.py @@ -843,6 +843,8 @@ def _objective(trial): if getattr(self, "objective", None) is None: metrics = self.evalua...
https://api.github.com/repos/huggingface/transformers/pulls/6691
2020-08-24T16:07:51Z
2020-08-24T16:15:01Z
2020-08-24T16:15:01Z
2020-08-24T16:15:02Z
154
huggingface/transformers
12,257
Fixed a bug with auto scroll in mitmweb
diff --git a/web/src/js/components/helpers/AutoScroll.tsx b/web/src/js/components/helpers/AutoScroll.tsx index 517a93a2ca..d06a19804d 100644 --- a/web/src/js/components/helpers/AutoScroll.tsx +++ b/web/src/js/components/helpers/AutoScroll.tsx @@ -2,7 +2,8 @@ import React from "react"; import ReactDOM from "react-dom";...
#### Description Fixed a bug that could prevent mitmweb autoscroll from working properly. This bug was caused by the fact that clientHeight and scrollHeight returned integers, but scrollTop returned a decimal number. [https://drafts.csswg.org/cssom-view/#extension-to-the-element-interface](https://drafts.csswg.org/c...
https://api.github.com/repos/mitmproxy/mitmproxy/pulls/6038
2023-04-01T07:06:11Z
2023-04-01T11:29:44Z
2023-04-01T11:29:44Z
2023-04-01T11:29:45Z
163
mitmproxy/mitmproxy
27,947
Update LICENSE
diff --git a/LICENSE b/LICENSE index 6ca207ef..4c52c468 100644 --- a/LICENSE +++ b/LICENSE @@ -1,122 +1,3 @@ Creative Commons Legal Code -CC0 1.0 Universal - - CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE - LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN - ATTORNEY-CL...
No need to the licence
https://api.github.com/repos/josephmisiti/awesome-machine-learning/pulls/902
2022-12-06T11:04:58Z
2022-12-06T17:39:47Z
2022-12-06T17:39:47Z
2022-12-06T18:26:41Z
1,644
josephmisiti/awesome-machine-learning
52,437
VW MQB: Add FW for 2020 Škoda Scala
diff --git a/selfdrive/car/volkswagen/values.py b/selfdrive/car/volkswagen/values.py index f627e517be366e..6ae4969cc0ab12 100755 --- a/selfdrive/car/volkswagen/values.py +++ b/selfdrive/car/volkswagen/values.py @@ -1079,6 +1079,7 @@ def init_make(self, CP: car.CarParams): b'\xf1\x870CW300050 \xf1\x891709', ...
Add missing SRS firmware for the 2020 Škoda Scala. **Route:** `b1293b9f37f88166|2023-01-14--19-30-14` Thanks to community Scala owner WestN!
https://api.github.com/repos/commaai/openpilot/pulls/26976
2023-01-15T22:44:38Z
2023-01-16T01:16:45Z
2023-01-16T01:16:45Z
2023-01-16T01:55:22Z
216
commaai/openpilot
9,061
Add Max Fenwick Tree
diff --git a/data_structures/binary_tree/maximum_fenwick_tree.py b/data_structures/binary_tree/maximum_fenwick_tree.py new file mode 100644 index 000000000000..e90bd634d51c --- /dev/null +++ b/data_structures/binary_tree/maximum_fenwick_tree.py @@ -0,0 +1,102 @@ +class MaxFenwickTree: + """ + Maximum Fenwick Tree...
### Describe your change: I created MaxFenwickTreeOneBasedIndexing wich solves this problem: - Update A[i] = value - Query Maximum of Range (l, r] This algorithm use classic fenwick tree with some changes in key ideas. * [x] Add an algorithm? * [ ] Fix a bug or typo in an existing algorithm? * [ ] Documentat...
https://api.github.com/repos/TheAlgorithms/Python/pulls/6298
2022-08-06T13:11:04Z
2022-08-12T09:12:58Z
2022-08-12T09:12:58Z
2022-08-12T09:12:58Z
831
TheAlgorithms/Python
29,562
Set recreate = true in tox.ini
diff --git a/tox.ini b/tox.ini index 3a31558d814..6d9814192c0 100644 --- a/tox.ini +++ b/tox.ini @@ -67,6 +67,9 @@ passenv = commands = {[base]install_and_test} {[base]all_packages} python tests/lock_test.py +# We always recreate the virtual environment to avoid problems like +# https://github.com/certbot/ce...
Fixes https://github.com/certbot/certbot/issues/7745.
https://api.github.com/repos/certbot/certbot/pulls/7746
2020-02-05T20:00:48Z
2020-02-05T22:37:40Z
2020-02-05T22:37:39Z
2020-02-05T22:37:43Z
150
certbot/certbot
3,777
Live language feedback
diff --git a/website/package-lock.json b/website/package-lock.json index fe03e14575..3b8220e509 100644 --- a/website/package-lock.json +++ b/website/package-lock.json @@ -32,6 +32,7 @@ "eslint-plugin-simple-import-sort": "^8.0.0", "focus-visible": "^5.2.0", "framer-motion": "^6.5.1", + ...
This PR aims to resolve issue #997 , it uses the `lande` js library to detect the (most probable) language after 10 entered words in a TrackedTextarea and shows a Modal like for FullText view to remind the Prompter of changing to the language. After closing the dialog the word limit for detection is doubled (stored usi...
https://api.github.com/repos/LAION-AI/Open-Assistant/pulls/1071
2023-02-02T12:48:32Z
2023-02-05T06:10:54Z
2023-02-05T06:10:54Z
2023-02-05T06:10:54Z
3,461
LAION-AI/Open-Assistant
36,933
[seq2seq] correctly handle mt5
diff --git a/examples/seq2seq/utils.py b/examples/seq2seq/utils.py index 8b24bfdadcf6f..303b89f78192d 100644 --- a/examples/seq2seq/utils.py +++ b/examples/seq2seq/utils.py @@ -563,7 +563,7 @@ def freeze_embeds(model): """Freeze token embeddings and positional embeddings for bart, just token embeddings for t5.""" ...
This PR fixes `seq2seq/utils.py` to handle `mt5` like it does `t5`. Ideally there should be a test, which would require creating a tiny model for mt5, but I'm being told this code is going away anyway, so there is no point investing energy into it. Fixes: https://github.com/huggingface/transformers/issues/9865 ...
https://api.github.com/repos/huggingface/transformers/pulls/9879
2021-01-29T00:05:29Z
2021-01-29T16:11:22Z
2021-01-29T16:11:22Z
2021-01-29T16:11:27Z
155
huggingface/transformers
12,910
Concise `TransformerBlock()`
diff --git a/models/common.py b/models/common.py index 4211db406c3..96d63a07a1b 100644 --- a/models/common.py +++ b/models/common.py @@ -77,18 +77,8 @@ def forward(self, x): if self.conv is not None: x = self.conv(x) b, _, w, h = x.shape - p = x.flatten(2) - p = p.unsqueeze(...
## 🛠️ PR Summary <sub>Made with ❤️ by [Ultralytics Actions](https://github.com/ultralytics/actions)<sub> ### 🌟 Summary Simplified tensor operations in forward method of a model component. ### 📊 Key Changes - Streamlined the forward pass code by chaining tensor operations. - Removed intermediate variables and re...
https://api.github.com/repos/ultralytics/yolov5/pulls/3821
2021-06-29T11:58:57Z
2021-06-29T14:03:10Z
2021-06-29T14:03:10Z
2024-01-19T17:14:40Z
258
ultralytics/yolov5
25,165
Improve Project Euler problem 058 solution 1
diff --git a/project_euler/problem_058/sol1.py b/project_euler/problem_058/sol1.py index d3b15157fbbd..ed407edf7158 100644 --- a/project_euler/problem_058/sol1.py +++ b/project_euler/problem_058/sol1.py @@ -33,11 +33,12 @@ count of current primes. """ +from math import isqrt -def isprime(d: int) -> int: +def is...
### **Describe your change:** Improve Project Euler problem 058 solution 1 - the top 7 slowest solution on Travis CI logs (under `slowest 10 durations`: `11.38s call scripts/validate_solutions.py::test_project_euler[problem_058/sol1.py]`): * Fix typo * Improve solution (locally 4+ times - from 8+ seconds to ~2 s...
https://api.github.com/repos/TheAlgorithms/Python/pulls/4782
2021-09-25T17:55:45Z
2021-10-25T08:07:10Z
2021-10-25T08:07:10Z
2021-10-25T12:44:35Z
317
TheAlgorithms/Python
29,717
Update microlink information
diff --git a/README.md b/README.md index cf3d8f210d..a866d00bee 100644 --- a/README.md +++ b/README.md @@ -516,7 +516,7 @@ API | Description | Auth | HTTPS | CORS | Link | | INQStats | Open demographic data such as population, life expectancy, migration rate, etc | `apiKey` | No | Unknown | [Go!](http://blog.inqubu.co...
https://api.github.com/repos/public-apis/public-apis/pulls/698
2018-06-13T09:33:32Z
2018-06-26T22:25:43Z
2018-06-26T22:25:43Z
2018-06-26T23:14:27Z
346
public-apis/public-apis
35,904
Temporarily disable extremely flaky tests
diff --git a/e2e/specs/st_checkbox.spec.js b/e2e/specs/st_checkbox.spec.js index b3776f96364b..5c9dea74c19a 100644 --- a/e2e/specs/st_checkbox.spec.js +++ b/e2e/specs/st_checkbox.spec.js @@ -34,7 +34,7 @@ describe("st.checkbox", () => { // We have to manually use the changeTheme command in the next two tests // s...
I added some snapshot tests for things that previously didn't have any test coverage in the theming fast follow feature branch. These tests seemed okay in the branch but suddenly turned flaky to the point of being unusable once it got merged into develop, so this commit disables them for now to un-break the build u...
https://api.github.com/repos/streamlit/streamlit/pulls/3180
2021-04-26T19:51:12Z
2021-04-26T20:12:54Z
2021-04-26T20:12:53Z
2021-07-24T00:37:17Z
502
streamlit/streamlit
21,834
feat: ignore providers
diff --git a/g4f/__init__.py b/g4f/__init__.py index 1a696c6c33..6f777e4cf7 100644 --- a/g4f/__init__.py +++ b/g4f/__init__.py @@ -1,13 +1,14 @@ from __future__ import annotations from requests import get from g4f.models import Model, ModelUtils -from .Provider import BaseProvider -from .typing import Messages, Crea...
According to #1014 , add a `ignored` parameter which can let users choose **ignore specific providers**. ## Example ```python # normal response = g4f.ChatCompletion.create( model='gpt-3.5-turbo', messages=[{"role": "user", "content": "hello"}], ignored=["Ylokh", "GptGo", "AItianhu", "Aibn", "My...
https://api.github.com/repos/xtekky/gpt4free/pulls/1064
2023-10-13T06:25:26Z
2023-10-13T10:33:44Z
2023-10-13T10:33:44Z
2023-10-13T10:33:44Z
938
xtekky/gpt4free
38,388
Fix typo in docs/patterns/javascript.rst
diff --git a/docs/patterns/javascript.rst b/docs/patterns/javascript.rst index dd3bcb9b6c..4b1d7e0fb4 100644 --- a/docs/patterns/javascript.rst +++ b/docs/patterns/javascript.rst @@ -28,7 +28,7 @@ It is important to understand the difference between templates and JavaScript. Templates are rendered on the server, befor...
Fixed a typo
https://api.github.com/repos/pallets/flask/pulls/4758
2022-08-09T08:48:09Z
2022-08-09T14:08:08Z
2022-08-09T14:08:08Z
2022-08-24T00:06:25Z
189
pallets/flask
20,696
Update rec_nrtr_head.py
diff --git a/ppocr/modeling/heads/rec_nrtr_head.py b/ppocr/modeling/heads/rec_nrtr_head.py index bf9ef56145..2fffa52176 100644 --- a/ppocr/modeling/heads/rec_nrtr_head.py +++ b/ppocr/modeling/heads/rec_nrtr_head.py @@ -17,7 +17,6 @@ from paddle import nn import paddle.nn.functional as F from paddle.nn import LayerLi...
https://api.github.com/repos/PaddlePaddle/PaddleOCR/pulls/8564
2022-12-07T07:05:22Z
2022-12-07T07:07:50Z
2022-12-07T07:07:50Z
2022-12-07T07:07:50Z
683
PaddlePaddle/PaddleOCR
42,508
docs: fix minor capitalization typo
diff --git a/README.md b/README.md index 52bf032c2..d721b3d8e 100644 --- a/README.md +++ b/README.md @@ -117,7 +117,7 @@ Don't know what to contribute? Here is the public [Project Board](https://github.com/users/imartinez/projects/3) with several ideas. Head over to Discord -#contributors channel and ask for writ...
:)
https://api.github.com/repos/zylon-ai/private-gpt/pulls/1392
2023-12-11T11:01:45Z
2023-12-12T19:31:38Z
2023-12-12T19:31:38Z
2023-12-13T14:11:36Z
367
zylon-ai/private-gpt
38,472
fix for default background in svg export
diff --git a/CHANGELOG.md b/CHANGELOG.md index 692249f2e..1484ecf08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic ...
Fix for https://github.com/Textualize/rich/issues/2260
https://api.github.com/repos/Textualize/rich/pulls/2262
2022-05-08T07:32:57Z
2022-05-08T16:58:39Z
2022-05-08T16:58:38Z
2022-05-08T16:58:39Z
3,651
Textualize/rich
48,316
Fix windows LOGGER with emojis output
diff --git a/utils/general.py b/utils/general.py index 10fa07f379f..502459d7b78 100755 --- a/utils/general.py +++ b/utils/general.py @@ -97,8 +97,9 @@ def set_logging(name=None, verbose=VERBOSE): set_logging() # run before defining LOGGER LOGGER = logging.getLogger("yolov5") # define globally (used in train.py, v...
## 🛠️ PR Summary <sub>Made with ❤️ by [Ultralytics Actions](https://github.com/ultralytics/actions)<sub> ### 🌟 Summary Enhanced logging for Windows users in YOLOv5. ### 📊 Key Changes - Adjusted the logger setup to include emoji-safe logging specifically for Windows platforms. ### 🎯 Purpose & Impact - 🎉 **Ben...
https://api.github.com/repos/ultralytics/yolov5/pulls/8958
2022-08-13T21:40:49Z
2022-08-13T22:12:09Z
2022-08-13T22:12:09Z
2024-01-19T07:27:55Z
203
ultralytics/yolov5
24,790
Add link to IT translation
diff --git a/docs/_templates/sidebarintro.html b/docs/_templates/sidebarintro.html index 03bf7e0e23..524c73f339 100644 --- a/docs/_templates/sidebarintro.html +++ b/docs/_templates/sidebarintro.html @@ -34,8 +34,7 @@ <h3>Translations</h3> <li><a href="http://jp.python-requests.org/">Japanese</a></li> <li><a href="htt...
Fixes #2744
https://api.github.com/repos/psf/requests/pulls/2746
2015-08-25T20:10:24Z
2015-08-26T00:38:04Z
2015-08-26T00:38:04Z
2021-09-08T06:01:08Z
175
psf/requests
32,093
Fix the setuptools_scm issue
diff --git a/python/build-wheel-macos.sh b/python/build-wheel-macos.sh index f7229b348478a..7559fd02cd016 100755 --- a/python/build-wheel-macos.sh +++ b/python/build-wheel-macos.sh @@ -47,6 +47,11 @@ for ((i=0; i<${#PY_VERSIONS[@]}; ++i)); do PYTHON_EXE=$MACPYTHON_PY_PREFIX/$PY_MM/bin/python$PY_MM PIP_CMD="$(dirn...
#1782
https://api.github.com/repos/ray-project/ray/pulls/1784
2018-03-26T23:11:06Z
2018-03-31T17:33:41Z
2018-03-31T17:33:41Z
2018-03-31T17:33:45Z
200
ray-project/ray
19,709
allow loading embeddings from subdirectories
diff --git a/modules/textual_inversion/textual_inversion.py b/modules/textual_inversion/textual_inversion.py index 24b43045919..0a0590440a6 100644 --- a/modules/textual_inversion/textual_inversion.py +++ b/modules/textual_inversion/textual_inversion.py @@ -149,19 +149,20 @@ def process_file(path, filename): ...
https://api.github.com/repos/AUTOMATIC1111/stable-diffusion-webui/pulls/6384
2023-01-05T20:39:52Z
2023-01-06T04:56:49Z
2023-01-06T04:56:49Z
2023-01-06T04:56:49Z
371
AUTOMATIC1111/stable-diffusion-webui
40,387
Cache docs URL; updated docstrings
diff --git a/lib/streamlit/runtime/caching/__init__.py b/lib/streamlit/runtime/caching/__init__.py index 0550b47b8947..8f02e82363d2 100644 --- a/lib/streamlit/runtime/caching/__init__.py +++ b/lib/streamlit/runtime/caching/__init__.py @@ -32,8 +32,7 @@ ) from streamlit.runtime.state.session_state import WidgetMetadat...
- Replace our placeholder `CACHE_DOCS_URL` with the proper URL - Update `cache_data` and `cache_resource` docstrings, per product - `cache_data`: swap the order of the `show_spinner` + `persist` kwargs, per product
https://api.github.com/repos/streamlit/streamlit/pulls/5980
2023-01-19T17:38:18Z
2023-01-19T23:19:43Z
2023-01-19T23:19:42Z
2023-01-19T23:19:45Z
2,315
streamlit/streamlit
21,664
#4242 Support multi emails register
diff --git a/acme/acme/messages.py b/acme/acme/messages.py index 03dbc325579..827a4dd11a6 100644 --- a/acme/acme/messages.py +++ b/acme/acme/messages.py @@ -285,7 +285,7 @@ def from_data(cls, phone=None, email=None, **kwargs): if phone is not None: details.append(cls.phone_prefix + phone) ...
This change will allow registering/updating account with multi emails. Detail is enclosed in #4242
https://api.github.com/repos/certbot/certbot/pulls/5994
2018-05-14T22:27:52Z
2018-05-22T22:32:45Z
2018-05-22T22:32:45Z
2018-05-22T23:45:47Z
1,819
certbot/certbot
334
ui: update calibration limits text
diff --git a/selfdrive/ui/qt/offroad/settings.cc b/selfdrive/ui/qt/offroad/settings.cc index f74e671d298e14..669de5eae93e94 100644 --- a/selfdrive/ui/qt/offroad/settings.cc +++ b/selfdrive/ui/qt/offroad/settings.cc @@ -283,7 +283,7 @@ DevicePanel::DevicePanel(SettingsWindow *parent) : ListWidget(parent) { void DeviceP...
It's 9.7, but we round down. https://github.com/commaai/openpilot/pull/28255
https://api.github.com/repos/commaai/openpilot/pulls/30014
2023-09-22T22:47:34Z
2023-09-23T04:38:07Z
2023-09-23T04:38:07Z
2023-09-23T04:38:08Z
3,906
commaai/openpilot
9,353
Fix for #4264: --line-ranges formats entire file when ranges are at EOF
diff --git a/CHANGES.md b/CHANGES.md index 1d20a4c9210..4f458b52b8e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -15,6 +15,8 @@ of Black would incorrectly format the contents of certain unusual f-strings containing nested strings with the same quote type. Now, Black will crash on such strings until support for ...
### Description <!-- Good things to put here include: reasoning for the change (please link any relevant issues!), any noteworthy (or hacky) choices to be aware of, or what the problem resolved here looked like ... we won't mind a ranty story :) --> This fixes #4264. The issue was that the empty...
https://api.github.com/repos/psf/black/pulls/4273
2024-03-12T16:43:54Z
2024-03-15T18:18:48Z
2024-03-15T18:18:48Z
2024-03-16T10:08:40Z
2,027
psf/black
23,799